anycoder-23461cd1 / next.config.js
00Boobs00's picture
Upload next.config.js with huggingface_hub
bd531d4 verified
raw
history blame contribute delete
302 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
// Allow images from external domains if needed
images: {
domains: ['localhost', 'huggingface.co'],
},
// Configure for HuggingFace Spaces if needed
output: 'standalone',
}
module.exports = nextConfig