This commit is contained in:
2025-12-18 16:21:46 +07:00
parent cddf41be8b
commit afcf4c55b9
29 changed files with 12678 additions and 134 deletions

View File

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