webpack entry
发布于 15 小时前 作者 MyNodeJs 89 次浏览 来自 问答

entry The entry point for the bundle. If you pass an array: All modules are loaded upon startup. The last one is exported.

entry: ["./entry1", “./entry2”]

The last one is exported是什么意思? 每一个模块都可以导出啊? 为什么只有最后一个才能导出,导出了给谁用?

回到顶部