Files
nguyencongpc_nextjs/next.config.ts

21 lines
360 B
TypeScript
Raw Normal View History

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
},
2026-03-13 13:54:45 +07:00
{
protocol: 'https',
hostname: 'www.dmca.com',
pathname: '/**',
},
2025-12-18 16:21:46 +07:00
],
},
2025-12-17 13:16:31 +07:00
};
export default nextConfig;