项目用的React17 + antd框架 引入
Minio 报错Can't import the named export 'EventEmitter' from non EcmaScript module (only default export is available)
翻译:不能从非EcmaScript模块中导入命名导出` EventEmitter `(只有默认导出可用)
修改config.js文件中 webpack配置成功
chainWebpack(config) { config.module .rule('mjs$') .test(/\.mjs$/) .include .add(/node_modules/) .end() .type('javascript/auto'); },