Can‘t import the named export ‘A
2022-04-15 本文已影响0人
青乌
解决方案
vue.config.js加以下部分
configureWebpack:{
module: {
rules: [
{
test: /\.mjs$/,
include: /node_modules/,
type: "javascript/auto"
},
]
}
}