Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
module.exports = {
output: 'standalone',
trailingSlash: true,
rewrites() {
return {
beforeFiles: [
{
source: '/news/:path/',
destination: '/news/:path*/',
},
],
afterFiles: [
{
source: '/somewhere',
destination: '/',
},
],
fallback: [
{
source: '/:path*',
destination: '/:path*',
},
{
source: '/(.*)',
destination: '/seo-redirects',
},
],
}
},
}