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