在 vite.config.ts 中进行跨域请求的配置
javascript
server: {
port: 3000,
proxy: {
'/api': {
target: '请求的地址',
changeOrigin: true,
},
}
}