smart-bright-tool / next.config.js
Gertie01's picture
Upload next.config.js with huggingface_hub
09308c2 verified
raw
history blame contribute delete
240 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
// Required for Next.js to run effectively in containerized environments like HuggingFace Spaces
output: 'standalone',
}
module.exports = nextConfig