removed linting issues

pull/1097/head
smit95tpatel 2021-12-21 16:23:49 +05:30
parent f1c639ddc6
commit 434d72a6d2
1 changed files with 23 additions and 26 deletions

View File

@ -1,31 +1,28 @@
module.exports = { module.exports = {
assetsDir: 'assets', assetsDir: 'assets',
filenameHashing: false, filenameHashing: false,
productionTip: process.env.NODE_ENV !== 'production',
devtools: process.env.NODE_ENV !== 'production',
performance: process.env.NODE_ENV !== 'production',
devServer: { devServer: {
proxy: 'https://statping.concierge.stage.razorpay.in', disableHostCheck: true,
}, proxyTable: {
// productionTip: process.env.NODE_ENV !== 'production', '/api': {
// devtools: process.env.NODE_ENV !== 'production', logLevel: 'debug',
// performance: process.env.NODE_ENV !== 'production', target: 'http://0.0.0.0:8585',
// devServer: { changeOrigin: true,
// disableHostCheck: true, pathRewrite: {
// proxyTable: { '^/api': ''
// '/api': { }
// logLevel: 'debug', },
// target: 'http://0.0.0.0:8585', '/oauth': {
// changeOrigin: true, logLevel: 'debug',
// pathRewrite: { target: 'http://0.0.0.0:8585',
// '^/api': '' changeOrigin: true,
// } pathRewrite: {
// }, '^/oauth': ''
// '/oauth': { }
// logLevel: 'debug', }
// target: 'http://0.0.0.0:8585', }
// changeOrigin: true, }
// pathRewrite: {
// '^/oauth': ''
// }
// }
// }
// }
}; };