mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-05 19:42:08 +08:00
14 lines
225 B
Markdown
14 lines
225 B
Markdown
# proxy 跨域
|
|
|
|
```javascript
|
|
server: {
|
|
proxy: {
|
|
'/api': {
|
|
target: 'https://baidu.com',
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/api/, '')
|
|
}
|
|
}
|
|
},
|
|
```
|