16 lines
316 B
TypeScript
Executable File
16 lines
316 B
TypeScript
Executable File
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
port: 3200,
|
|
proxy: {
|
|
"/api": {
|
|
target: process.env.WALLMUSE_API_BASE_URL ?? "http://127.0.0.1:4000",
|
|
changeOrigin: true
|
|
}
|
|
}
|
|
}
|
|
});
|