import { fileURLToPath, URL } from 'node:url' import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' // https://vitejs.dev/config/ export default defineConfig({ plugins: [ vue(), ], resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) } }, server: { proxy: { //获取路径当中包含了/api的请求 '/api': { //后台服务所在的源 target: 'http://localhost:5678', //修改源 changeOrigin: true, rewrite: (path) => path.replace(/^\/api/, '') } } } })