Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
/** @type {import('next').NextConfig} */
module.exports = {
async redirects() {
return [
{
source: '/redirects',
destination: '/',
permanent: true,
},
]
},
async rewrites() {
return [
{
source: '/rewrites',
destination: '/',
},
]
},
async headers() {
return [
{
source: '/',
headers: [
{
key: 'x-custom-headers',
value: 'headers',
},
],
},
]
},
}