From ca3fb0b342f6a858bdb8bfe9c891d645a3d9d375 Mon Sep 17 00:00:00 2001 From: "Stephanos A." Date: Tue, 2 Jun 2026 23:30:43 +0300 Subject: [PATCH] fix: configure Next.js build output to dist directory for Docker build --- apps/edr-passenger-web/backoffice/next.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/edr-passenger-web/backoffice/next.config.js b/apps/edr-passenger-web/backoffice/next.config.js index dcde34d31..93ff0a6fa 100644 --- a/apps/edr-passenger-web/backoffice/next.config.js +++ b/apps/edr-passenger-web/backoffice/next.config.js @@ -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;