1.0.4 • Published 1 year ago

cos-upload-plugin v1.0.4

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

使用方式 注意:此插件仅仅针对webpack4.x版本使用,生产环境webpack的devtool选项需要设置成source-map

const CosUploadPlugin = require('cos-upload-plugin')
const isProd = process.env.NODE_ENV === 'production'
//webpack config
module.exports = {
  ...,
  devtool: isProd ? 'source-map': 'cheap-module-eval-source-map',
  plugins:[
    ...,
    isProd && new CosUploadPlugin({
      url, // api地址
      appid, // 获取临时密钥id
      remote, // 远程存储文件夹 aa/bb
      dir, // 本地上传文件夹
      bucket, // 存储桶名
      region // 地区
    })
  ].filter(Boolean)
}
1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago