0%

npm | 插件 copy-webpack-plugin

这个可以把资源文件 copy 到任意文件夹中。


参考资料



用法


因为,我有一些静态资源,比如 zip 之类的,想在 webpack 打包的时候,放置在 dist 下。

所以,我的配置如下:

1
2
3
4
5
6
7
plugins: [
new CopyWebpackPlugin([
{
from: 'src/static', // 原始目录
to: 'static', // 输出目录
}
]),]

上面的意思是将 src/static 下面的所有资源转到 dist/static 里面。

引用的话,可以

1
<a href="/static/win10_ubuntu.zip" download="win10_ubuntu.zip">下载ZIP</a>
请我喝杯咖啡吧~