15 lines
302 B
TypeScript
15 lines
302 B
TypeScript
import tailwindcss from "@tailwindcss/vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
plugins: [react(), tailwindcss()],
|
|
server: {
|
|
proxy: {
|
|
"/api/v1": {
|
|
target: "http://localhost:8370",
|
|
},
|
|
},
|
|
},
|
|
});
|