1.0.0 • Published 4 years ago

copy-link v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
4 years ago
  1. webpack 中因为配置额外的打包链接到 dist 目录
  2. eg: var CopyLinkWebpackPlugin = require('copy-links');

  3. 代码片段

var webpackConfig = {
    // ... 这里是引用配置 ...
    ...
    plugins: [
        new CopyLinkWebpackPlugin({
            to: __dirname + '/dist',
            from: __dirname + '/copy'
        })
    ]
};