From 2c740b99beeb687d85ca3dfd72bd9acc7806e2bc Mon Sep 17 00:00:00 2001 From: TaminoFischer Date: Sun, 22 Feb 2026 16:58:45 +0100 Subject: [PATCH] build(docker): add base-href /woped-web/ for subpath deployment Enables serving the app under /woped-web/home (same as GitHub Pages). Co-authored-by: Cursor --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 22fe677..bc33904 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN npm ci COPY . . -RUN npm run build -- --configuration=production +RUN npm run build -- --configuration=production --base-href /woped-web/ # Stage 2: Serve the application with Nginx FROM nginx:alpine