module.exports = { publicPath: './', lintOnSave: true, productionSourceMap: false, devServer: { proxy: { '/api': { target: 'http://localhost:8400', changeOrigin: true, ws: true, pathRewrite: { '^/api': '' } }, '/user_api': { target: 'http://localhost:8400', changeOrigin: true, ws: true, pathRewrite: { '^/user_api': '' } }, '/device_api': { target: 'http://localhost:8600', changeOrigin: true, ws: true, pathRewrite: { '^/device_api': '' } } } } };