Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
/** @type {import('next').NextConfig} */
module.exports = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.builder.io",
port: "",
pathname: "/my-account/**",
},
],
},
async headers() {
return [
{
source: "/:path*",
headers: [
{
key: "Content-Security-Policy",
value:
"frame-ancestors https://*.builder.io https://builder.io http://localhost:1234",
},
],
},
];
},
};