16 lines
257 B
JavaScript
16 lines
257 B
JavaScript
|
|
module.exports = {
|
||
|
|
devServer: {
|
||
|
|
port: 8080,
|
||
|
|
proxy: {
|
||
|
|
'/api': {
|
||
|
|
target: 'http://127.0.0.1:3000',
|
||
|
|
changeOrigin: true,
|
||
|
|
ws: true,
|
||
|
|
secure: false,
|
||
|
|
logLevel: 'debug'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
lintOnSave: false
|
||
|
|
};
|