Jotzy/frontend/vite.config.mts

17 lines
342 B
TypeScript
Raw Normal View History

2025-11-19 21:16:32 +00:00
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
2025-11-23 09:08:01 +00:00
import tailwindcss from "@tailwindcss/vite"
2025-11-19 21:16:32 +00:00
export default defineConfig({
2025-11-23 09:08:01 +00:00
plugins: [tailwindcss(), react()],
2025-11-19 21:16:32 +00:00
server: {
2025-11-23 09:08:01 +00:00
port: 5173,
2025-11-19 21:16:32 +00:00
proxy: {
"/api": {
target: "http://localhost:8000",
changeOrigin: true,
},
},
},
});