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