14 lines
220 B
JavaScript
14 lines
220 B
JavaScript
module.exports = {
|
|
devServer: {
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://localhost:3001',
|
|
changeOrigin: true
|
|
}
|
|
},
|
|
client: {
|
|
webSocketURL: 'ws://localhost:8080/ws',
|
|
},
|
|
}
|
|
};
|