team-1/frontend/vite.config.ts

23 lines
582 B
TypeScript
Raw Permalink Normal View History

2025-08-02 05:16:37 +02:00
import tailwindcss from "@tailwindcss/vite"
import { sveltekit } from "@sveltejs/kit/vite"
import { defineConfig } from "vite"
2025-08-01 18:07:11 +02:00
export default defineConfig({
plugins: [tailwindcss(), sveltekit()],
server: {
proxy: {
2025-08-02 05:16:37 +02:00
"/api": {
2025-08-01 18:07:11 +02:00
target: "http://backend:5000",
changeOrigin: false,
2025-08-02 05:16:37 +02:00
secure: false,
2025-08-02 01:58:29 +02:00
},
2025-08-02 05:16:37 +02:00
"/ws": {
2025-08-02 01:58:29 +02:00
target: "http://backend:5000",
changeOrigin: false,
2025-08-02 05:16:37 +02:00
secure: false,
ws: true,
},
},
},
})