mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-21 09:10:42 +00:00
20 lines
307 B
TypeScript
20 lines
307 B
TypeScript
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
root: "./",
|
|
base: "/",
|
|
build: {
|
|
outDir: "static",
|
|
emptyOutDir: true,
|
|
},
|
|
server: {
|
|
port: 9100,
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://localhost:3100",
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
});
|