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.
使用 WebPack Loader API 时,是否this.addDependency也将文件添加到包中?
this.addDependency
不,它只是将此文件添加为通过加载程序加载的文件的依赖项。这意味着依赖文件中的每次更改,webpack 都会重新构建添加依赖项的模块。
这就像对依赖文件的“监视”。