Spaces:
Sleeping
Sleeping
| /** @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 |