import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' import { fileURLToPath, URL } from 'node:url' export default defineConfig({ plugins: [vue()], base: '/psy/', resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)), }, }, server: { port: 5173, proxy: { // H5 history base is /psy/; client baseURL is /psy/api → rewrite to Go /api '/psy/api': { target: 'http://127.0.0.1:8080', changeOrigin: true, rewrite: (path) => path.replace(/^\/psy\/api/, '/api'), }, '/api': { target: 'http://127.0.0.1:8080', changeOrigin: true, }, }, }, })