作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 CopyWebpackPlugin 将一些文件从我的 node_modules 文件夹复制到我的构建文件夹中。
new CopyWebpackPlugin([
{ from: 'node_modules/accounting/**', to: 'vendor/npm/' },
{ from: 'node_modules/angular/**', to: 'vendor/npm/' },
我希望它分别输出到我的构建文件夹 /build/vendor/npm/accounting
和 build/vendor/npm/angular
,而是一个 node_modules
文件夹已创建 - 文件实际上输出到 build/vendor/npm/node_modules/accounting
。
如何防止创建 node_modules 文件夹并获得预期的输出?
最佳答案
为了将来的引用,实际的正确答案是我需要上下文 -
{ from: 'accounting/**', to: 'vendor/npm', context: 'node_modules' }
关于javascript - 使用 CopyWebpackPlugin 如何将文件从 node_modules 复制到文件夹中而不创建 node_modules 文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52610197/
我是一名优秀的程序员,十分优秀!