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;