11 lines
180 B
JavaScript
11 lines
180 B
JavaScript
|
module.exports = {
|
||
|
devServer: {
|
||
|
proxy: {
|
||
|
'^/api': {
|
||
|
target: 'http://localhost:8040',
|
||
|
ws: true,
|
||
|
changeOrigin: true
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
}
|