美文网首页
Can‘t import the named export ‘A

Can‘t import the named export ‘A

作者: 青乌 | 来源:发表于2022-04-15 09:52 被阅读0次

    解决方案
    vue.config.js加以下部分

     configureWebpack:{
        module: {
            rules: [
                {
                    test: /\.mjs$/,
                    include: /node_modules/,
                    type: "javascript/auto"
                },
            ]
        }
    }
    
    
    

    相关文章

      网友评论

          本文标题:Can‘t import the named export ‘A

          本文链接:https://www.haomeiwen.com/subject/sdpfertx.html