mirror of https://github.com/statping/statping
removed linting issues
parent
434d72a6d2
commit
593194b8e3
|
@ -1,28 +1,29 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
assetsDir: 'assets',
|
baseUrl: '/',
|
||||||
filenameHashing: false,
|
assetsDir: 'assets',
|
||||||
productionTip: process.env.NODE_ENV !== 'production',
|
filenameHashing: false,
|
||||||
devtools: process.env.NODE_ENV !== 'production',
|
productionTip: process.env.NODE_ENV !== 'production',
|
||||||
performance: process.env.NODE_ENV !== 'production',
|
devtools: process.env.NODE_ENV !== 'production',
|
||||||
devServer: {
|
performance: process.env.NODE_ENV !== 'production',
|
||||||
disableHostCheck: true,
|
devServer: {
|
||||||
proxyTable: {
|
disableHostCheck: true,
|
||||||
'/api': {
|
proxyTable: {
|
||||||
logLevel: 'debug',
|
'/api': {
|
||||||
target: 'http://0.0.0.0:8585',
|
logLevel: 'debug',
|
||||||
changeOrigin: true,
|
target: 'http://0.0.0.0:8585',
|
||||||
pathRewrite: {
|
changeOrigin: true,
|
||||||
'^/api': ''
|
pathRewrite: {
|
||||||
}
|
'^/api': ''
|
||||||
},
|
}
|
||||||
'/oauth': {
|
},
|
||||||
logLevel: 'debug',
|
'/oauth': {
|
||||||
target: 'http://0.0.0.0:8585',
|
logLevel: 'debug',
|
||||||
changeOrigin: true,
|
target: 'http://0.0.0.0:8585',
|
||||||
pathRewrite: {
|
changeOrigin: true,
|
||||||
'^/oauth': ''
|
pathRewrite: {
|
||||||
}
|
'^/oauth': ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
};
|
Loading…
Reference in New Issue