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