1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/** @type {import('vite').UserConfig} */ export default { build: { sourcemap: true, }, server: { port: 6123, strictPort: true, proxy: { "/api": { target: "http://localhost:5188", changeOrigin: true, }, }, }, };