Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
});
const path = require('path');
module.exports = withBundleAnalyzer({
basePath: process.env.RELEASE_CHANNEL
? !process.env.RELEASE_CHANNEL || process.env.RELEASE_CHANNEL === 'latest'
? '/'
: '/' + process.env.RELEASE_CHANNEL
: undefined,
async rewrites() {
return [
{
source: '/docs',
destination: '/docs/index.html',
},
];
},
productionBrowserSourceMaps: true,
compiler: {
// ssr and displayName are configured by default
styledComponents: true,
},
});