ai-calc / next.config.js
arudradey's picture
Create next.config.js
7ff857e verified
raw
history blame contribute delete
235 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
reactStrictMode: true,
// Disable image optimization for simple Docker deployment
images: { unoptimized: true },
}
module.exports = nextConfig