Files
nguyencongpc_nextjs/next.config.ts
2025-12-18 16:21:46 +07:00

16 lines
314 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "nguyencongpc.vn",
pathname: "/**", // Cho phép tất cả đường dẫn từ domain này
},
],
},
};
export default nextConfig;