anycoder-dcd5a127 / next.config.js
BSJ2004's picture
Upload next.config.js with huggingface_hub
0a01e27 verified
raw
history blame contribute delete
318 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
domains: ['huggingface.co'],
},
async rewrites() {
return [
{
source: '/api/:path*',
destination: '/api/:path*',
},
];
},
};
module.exports = nextConfig;