You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
401 B
19 lines
401 B
8 months ago
|
export default {
|
||
|
server: {
|
||
|
proxy: {
|
||
|
'/api/f': {
|
||
|
target: 'http://localhost:8100',
|
||
|
changeOrigin: true,
|
||
|
rewrite: path => path.replace(/^\/api\/f/, '')
|
||
|
},
|
||
|
// 使用 proxy 实例
|
||
|
'/api': {
|
||
|
target: 'http://localhost:8100',
|
||
|
changeOrigin: true,
|
||
|
rewrite: path => path.replace(/^\/api/, 'de2api')
|
||
|
}
|
||
|
},
|
||
|
port: 8080
|
||
|
}
|
||
|
}
|