From b9747079684e0895caa8c8869f40516fd51bb0e6 Mon Sep 17 00:00:00 2001 From: "Fifo F." Date: Wed, 25 Jun 2025 21:46:05 +0200 Subject: [PATCH] Patch nginx config in Docker image to fix SPA routing --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 6cb54d9..b6de0d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,7 @@ RUN npm run build FROM nginx:alpine COPY --from=build /app/dist /usr/share/nginx/html +RUN sed -i 's|index index.html index.htm;|index index.html index.htm;\n try_files $uri $uri/ /index.html;|' /etc/nginx/conf.d/default.conf # Expose port 80 EXPOSE 80