Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从头开始并使用 cli 3 使用 vue 的默认创建项目。一切都很好,但是我注意到 chunk-vendors.js 文件包含 vue.js.min。我不想包含该文件,如何告诉 vue 不要将其包含在生产版本中?
如果您想从捆绑中排除 Vue,请使用库构建目标。
在 lib 模式下,Vue 是外部化的。这意味着即使您的代码导入了 Vue,该包也不会捆绑 Vue。如果通过捆绑器使用 lib,它将尝试通过捆绑器将 Vue 作为依赖项加载;否则,它会退回到一个全局 Vue 变量。