removed linting issues

pull/1097/head
smit95tpatel 2021-12-21 16:24:56 +05:30
parent 434d72a6d2
commit 593194b8e3
1 changed files with 25 additions and 24 deletions

View File

@ -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': ''
} }
} }
} }
}; }
};