17 lines
328 B
TypeScript
17 lines
328 B
TypeScript
import { defineConfig } from "vite";
|
|
import vue from "@vitejs/plugin-vue";
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
server: {
|
|
port: 5173,
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://localhost:8000",
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/api/, "")
|
|
}
|
|
}
|
|
}
|
|
});
|