在Vite中出现CORS跨同源调取第三方API报错的问题
将文件目录下vite.config.js
进行修改,用代理的方式来解决cors的问题
// vite.config.js
export default {
// ...
server: {
proxy: {
// 匹配以 /api 开头的请求路径
'/api': {
// 目标 API 服务器地址
target: 'https://example.com/api',
// 启用跨域代理
changeOrigin: true,
// 重写请求路径(可选)
rewrite: (path) => path.replace(/^\/api/, ''),
// 其他配置...
},
// 你可以添加更多代理规则
},
},
// ...
};