解决:
vite.config.js里
import {fileURLToPath, URL} from 'node:url'
import {defineConfig} from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
server:{
proxy:{
'/api':{
target:'http://api.jjcto.com/',
changeOrigin:true,
rewrite:(path) => path.replace(/^\/api/,'') // 解决:path.replace的第一个参数是正则表达式,不是字符串,没有引号
}
}
},
plugins: [
vue(),
]
})