File size: 302 Bytes
bd531d4
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
/** @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