Refactor routing in App.vue and Login.vue to redirect to the home page instead of the dashboard. Remove unused Users.vue component to streamline the codebase. Update Dockerfile to adjust Nginx configuration for landing page deployment.

This commit is contained in:
Omar Sánchez Pizarro
2026-01-21 00:16:26 +01:00
parent c1716b2193
commit ed2107086c
4 changed files with 7 additions and 710 deletions

View File

@@ -20,6 +20,9 @@ FROM nginx:alpine
# Copiar archivos construidos
COPY --from=builder /app/dist /usr/share/nginx/html/landing
#change /usr/share/nginx/html to /usr/share/nginx/html/landing
RUN sed -i 's|/usr/share/nginx/html|/usr/share/nginx/html/landing|g' /etc/nginx/conf.d/default.conf
# Exponer puerto
EXPOSE 80