Files
koin_ping_0.2.0/frontend/vite.config.js
KS Jannette da8b45012a fmt: apply prettier to frontend JS/TS/CSS/JSON files
Initial prettier pass with tabWidth=4.
2026-02-28 20:07:28 -05:00

17 lines
358 B
JavaScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
proxy: {
"/v1": {
target: "http://localhost:3001",
changeOrigin: true,
},
},
},
});