restored vue.config file

pull/1097/head
smit95tpatel 2021-12-28 12:37:59 +05:30
parent ddea5da94c
commit 7c290d2d93
1 changed files with 27 additions and 30 deletions

View File

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