Files
nguyencongpc_nextjs/next.config.ts
2025-12-23 15:29:31 +07:00

16 lines
257 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'nguyencongpc.vn',
pathname: '/**',
},
],
},
};
export default nextConfig;