anycoder-e3d83b2d / next.config.js
mvbhr's picture
Upload next.config.js with huggingface_hub
0197284 verified
raw
history blame contribute delete
217 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
output: 'export',
trailingSlash: true,
images: {
unoptimized: true
}
}
module.exports = nextConfig