fix: configure Next.js build output to dist directory for Docker build

This commit is contained in:
Stephanos A.
2026-06-02 23:30:43 +03:00
parent 343bf1cb47
commit ca3fb0b342

View File

@@ -5,6 +5,7 @@ const nextConfig = {
env: {
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:4000',
},
distDir: 'dist',
};
module.exports = nextConfig;