Files
Neon-Desk/frontend/next.config.js
Francesco 11af7921e8 chore: Add output: 'standalone' to Next.js config for Docker compatibility
- Ensures Next.js 16 generates minimal standalone output
- Required for the Dockerfile's production stage to work correctly
2026-02-19 02:57:04 +00:00

11 lines
239 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'standalone',
env: {
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:3001'
}
}
module.exports = nextConfig