banli17 / note

学习记录
https://banli17.github.io/note/docs/intro
MIT License
17 stars 2 forks source link

开发脚手架常见问题 #128

Open banli17 opened 2 years ago

banli17 commented 2 years ago

ts unbuild 开发脚手架

unbuild -stub 和 unbuild 行为不一致。

导出对象必须 export {} 而不能是 export class A {},否则在动态引入是 import('').then(mod), 这里的 mod 在开发和生产下由于打包行为问题,会导致一个是 mod.default .A ,一个是 mod.A .

exports.default 
exports.default.A
exports.A