16 lines
323 B
TypeScript
16 lines
323 B
TypeScript
import vue from "@vitejs/plugin-vue";
|
|
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
server: {
|
|
host: true,
|
|
port: 5174,
|
|
proxy: {
|
|
"/api": "http://localhost:8000",
|
|
"/uploads": "http://localhost:8000",
|
|
"/health": "http://localhost:8000",
|
|
},
|
|
},
|
|
});
|