vite.config.js配置proxy
时间: 2023-11-02 22:22:19 浏览: 126
vite.config.js
你可以在 `vite.config.js` 文件中配置代理。下面是一个示例:
```javascript
module.exports = {
// 其他配置项...
server: {
proxy: {
// 将 `/api` 开头的请求代理到 `http://example.com`
'/api': {
target: 'http://example.com',
changeOrigin: true,
rewrite: path => path.replace(/^\/api/, '')
},
// 将 `/foo` 开头的请求代理到 `http://localhost:3000`
'/foo': {
target: 'http://localhost:3000',
changeOrigin: true,
rewrite: path => path.replace(/^\/foo/, '')
}
}
}
};
```
在上述示例中,所有以 `/api` 开头的请求将被代理到 `http://example.com`,而以 `/foo` 开头的请求将被代理到 `http://localhost:3000`。你可以根据自己的需要进行相应的配置。记得在完成配置后重新启动 Vite 服务器使其生效。
阅读全文