AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
assetPrefix: '/assets',
rewrites() {
return {
beforeFiles: [
{
source: '/assets/:path*',
destination: '/:path*',
},
],
}
},
cacheComponents: true,
}
module.exports = nextConfig