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