anycoder-d1e17039 / next.config.js
kizabgd123's picture
Upload next.config.js with huggingface_hub
400d30b verified
raw
history blame contribute delete
351 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
output: 'standalone',
experimental: {
appDir: false,
},
typescript: {
ignoreBuildErrors: false,
},
eslint: {
ignoreDuringBuilds: false,
},
images: {
domains: ['huggingface.co'],
},
}
module.exports = nextConfig