qcloud-cos-webpack-plugin
v1.1.1
Published
A webpack plugin for qcloud cos.
Downloads
7
Readme
QCloudCOSWebpackPlugin
Configuration
Options:
| Params | |---:| | SecretId | | SecretKey | | Bucket | | Region |
example:
const QCloudCOSWebpackPlugin = require('qcloud-cos-webpack-plugin');
...
module.exports = {
plugins: [
...,
new QCloudCOSWebpackPlugin({
SecretId: `xxx`,
SecretKey: `xxx`,
Bucket: `xxx`,
Region: `xxx`,
}),
]
}