Jotzy/frontend/vite.config.mts

18 lines
388 B
TypeScript
Raw Normal View History

2025-11-19 21:16:32 +00:00
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
import svgr from "vite-plugin-svgr";
2025-11-19 21:16:32 +00:00
export default defineConfig({
plugins: [tailwindcss(), react(), svgr()],
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,
},
},
},
});