Vue真恶心!!!呜呜呜
5.配置代理
为了避免因后端服务器迁移造成的麻烦,在 vite.config.js 文件中配置如下代码:
export default defineConfig({
plugins: [vue()],
server:{
// 配置vite冷启动项目自动使用浏览器访问首页
open:true,
proxy: {
'/api': {
target: 'http://localhost:8080',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ''),
},
}
}
})