Files
surfnathanrip/frontend/vite.config.ts
T
CallMeVerity eb56ad5183 Initial commit
2026-06-03 00:44:48 +01:00

17 lines
343 B
TypeScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
port: 5173,
proxy: {
"/api": {
target: "http://localhost:3001",
changeOrigin: true,
},
},
},
});