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': ''
                }
             },
             //...
        }
    }
}
在vue.config.js中使用了process.env.VUE_APP_FILE_URL变量,但该变量未在.env文件中定义,导致在项目启动时报错: ERROR TypeError: Cannot read property ‘upgrade’ of undefined
在这种情况并非是因为node_module依赖导致
Logo

前往低代码交流专区

更多推荐