0.0.5 • Published 4 years ago

cloud-storage-webpack-plugin v0.0.5

Weekly downloads
18
License
MIT
Repository
github
Last release
4 years ago

cloud-storage-webpack-plugin · GitHub license npm version

supports

  • cos
  • oss
  • qiniu

Install

npm install cloud-storage-webpack-plugin -D

yarn add cloud-storage-webpack-plugin -D

Usage

cos

const CloudStorageWebpackPlugin = require("cloud-storage-webpack-plugin");

module.exports = {
  plugins: [
    new CloudStorageWebpackPlugin({
      prefix: "cloud dir",
      cos: {
        SecretId: "your secretId",
        SecretKey: "your secretKey",
        Bucket: "your bucket",
        Region: "your regin"
      }
  ]
}

oss

const CloudStorageWebpackPlugin = require("cloud-storage-webpack-plugin");

module.exports = {
  plugins: [
    new CloudStorageWebpackPlugin({
      prefix: "cloud dir",
       oss:{
        accessKeyId: "your accessKeyId",
        accessKeySecret: "your accessKeySecret",
        bucket: "your bucket",
        region: "your regin"
      },
  ]
}

qiniu

const CloudStorageWebpackPlugin = require("cloud-storage-webpack-plugin");

module.exports = {
  plugins: [
    new CloudStorageWebpackPlugin({
      prefix: "cloud dir",
       qiniu:{
        accessKey:"your accessKey",
        secretKey:"your secretKey",
        scope:"your scope"
      }
  ]
}
0.0.5

4 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago