2025-12-17 13:16:31 +07:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2025-12-18 16:21:46 +07:00
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "nguyencongpc.vn",
|
|
|
|
|
pathname: "/**", // Cho phép tất cả đường dẫn từ domain này
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2025-12-17 13:16:31 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|