2025-12-23 15:29:31 +07:00
|
|
|
import type { NextConfig } from 'next';
|
2025-12-17 13:16:31 +07:00
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2025-12-18 16:21:46 +07:00
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
2025-12-23 15:29:31 +07:00
|
|
|
protocol: 'https',
|
|
|
|
|
hostname: 'nguyencongpc.vn',
|
|
|
|
|
pathname: '/**',
|
2025-12-18 16:21:46 +07:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2025-12-17 13:16:31 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|