Application died in status LOADING_SOURCE_CODE: Cannot read properties of undefined (reading ‘meta‘)

用single-spa脚手架创建vue子应用时报的错误,vue3和vue2都会有,解决方式是:

vue.config.js
const {
    
     defineConfig } = require("@vue/cli-service");
module.exports = defineConfig({
    
    
    transpileDependencies: true,
    configureWebpack: {
    
    
        output: {
    
    
            libraryTarget: "system",
        },
    },
});

文章参考

猜你喜欢

转载自blog.csdn.net/weixin_46166330/article/details/129382173
今日推荐