报错 : Cannot assign to read only property 'exports' of object '#
浏览器报错: Cannot assign to read only property 'exports' of object '#
这是一个模块语法的问题
使用 @babel/plugin-transform-modules-commonjs 来处理这个问题即可。
「This plugin transforms ES2015 modules to CommonJS.」
文档地址:https://www.babeljs.cn/docs/babel-plugin-transform-modules-commonjs
参考:
https://segmentfault.com/q/1010000012054980
https://segmentfault.com/q/1010000005596587?from=singlemessage&isappinstalled=1
Comments