This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
import{defineConfig}from'vite'
importvuefrom'@vitejs/plugin-vue'
// https://vite.dev/config/
exportdefaultdefineConfig({
plugins:[
vue(),
],
resolve:{
alias:{
'@':'/src'
},
},
server:{
proxy:{
// 代理所有以 /api 开头的请求到后端
'/api':{
target:'http://localhost:8080',// Spring Boot 后端地址