0.0.6 • Published 2 years ago

webpack-cdn-plugin-5 v0.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

webpack-cdn-plugin-5

For webpack4, please refer to webpack4-cdn-plugin.

Docs

Install

npm i webpack-cdn-plugin-5 -D

Usage

const { Webpack5CDNPlugin } = require('webpack-cdn-plugin-5')

// webpack config
module.exports = {
  plugins: [
    // ...
    new Webpack5CDNPlugin({
      keepLocalFiles: false,
      manifestFilename: 'manifest.json',
      uploadContent({ file, content }) {
        // TODO 需要自己实现上传文件、重试、并发控制
        return uploadTaskManager.upload(content).then(result => {
          return `http://127.0.0.1:8080/${result.hash_url}`
        })
      }
    })
  ]
}
0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago