ERROR TypeError: Cannot read property ‘upgrade’ of undefined
vue项目中遇到ERROR TypeError: Cannot read property ‘upgrade’ of undefined问题:
1、是项目配置文件(vue.config.js)中使用了由于.env或类似文件中没有定义的变量导致
.env文件
NODE_ENV=production
VUE_APP_PREVIEW=false
vue.config.js文件
// ...
module.exports = {
//...
devServer: {
//...
proxy:{
//...
'/fileServe': {
target: process.env.VUE_APP_FILE_URL,
// target: 'http://172.16.121.105:8082',
changeOrigin: true,
pathRewrite: {
'^/fileServe': ''
}
},
//...
}
}
}