17 lines
395 B
TypeScript
17 lines
395 B
TypeScript
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
port: 5173,
|
|
proxy: {
|
|
"/auth": "http://127.0.0.1:3000",
|
|
"/admin": "http://127.0.0.1:3000",
|
|
"/books": "http://127.0.0.1:3000",
|
|
"/progress": "http://127.0.0.1:3000",
|
|
"/healthz": "http://127.0.0.1:3000"
|
|
}
|
|
}
|
|
});
|