16 lines
280 B
TypeScript
16 lines
280 B
TypeScript
import react from "@vitejs/plugin-react"
|
|
import { defineConfig } from "vite"
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
port: 5174,
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://localhost:4001",
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
})
|