gemini-codrawing / next.config.js
Trudy's picture
Fix Next.js config for Hugging Face deployment: Convert to CommonJS format with standalone output
c23e9bf
raw
history blame
143 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'standalone'
};
module.exports = nextConfig;