anycoder-f86f051e / next.config.js
Mehdi
Upload next.config.js with huggingface_hub
e0cb6da verified
Raw
History Blame Contribute Delete
411 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
output: 'standalone',
images: {
unoptimized: true,
domains: ['via.placeholder.com', 'raw.githubusercontent.com']
},
experimental: {
appDir: false
},
webpack: (config) => {
config.resolve.fallback = { fs: false, path: false }
return config
}
}
module.exports = nextConfig