anycoder-bbf4ad2e / next.config.js
pedromsfaria's picture
Upload next.config.js with huggingface_hub
a3491ac verified
raw
history blame contribute delete
198 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
unoptimized: true
},
output: 'standalone'
}
module.exports = nextConfig