| 1234567891011121314151617181920212223 | 
module.exports = {    outputDir:"yos",    lintOnSave: false,    productionSourceMap:false,    publicPath: './',    devServer: {      open: true,      // host: '192.168.4.170',      host: 'localhost',      port: 8080,      proxy: {        '/apis': {          target: 'http://121.37.152.76:8080',  // target host          ws: true,  // proxy websockets           changeOrigin: true,  // needed for virtual hosted sites          pathRewrite: {              '^/apis': ''  // rewrite path          }        },      }    }}
 |