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