Files
nguyencongpc_nextjs/next.config.ts
2026-03-13 13:54:45 +07:00

21 lines
360 B
TypeScript

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