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