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
This commit is contained in:
Francesco
2026-02-19 02:57:04 +00:00
parent 8fe93c8a39
commit 11af7921e8

View File

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