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