refactor: move from sveltekit to vite

This commit is contained in:
2025-08-26 01:20:24 +02:00
parent 9130303a45
commit 70ea3c4027
31 changed files with 1746 additions and 4421 deletions

View File

@@ -12,8 +12,7 @@ RUN npm run build
# Use a lightweight nginx to serve the client build output
FROM nginx:alpine AS runner
COPY --from=builder /app/.svelte-kit/output/server /usr/share/nginx/html
COPY --from=builder /app/static /usr/share/nginx/html
COPY --from=builder /app/dist /usr/share/nginx/html
# Default nginx port
EXPOSE 80