0.0.4 • Published 5 years ago

oss-upload-webpack-plugin v0.0.4

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

Install

npm i oss-upload-webpack-plugin -D

Useages

module.exports = {
    output: {
        publicPath: "https://domain.com/p/a/t/h" // 域名或域名+路径
    },
    plugins: [
        // 其他插件
        new WosaiOSSPlugin({
            accessKeyId: '*****',
            accessKeySecret: '*****',
            region: 'oss-cn-hangzhou',
            bucket: '*****',
            beforeUpload: (file,compilation)=>{ // 上传之前dosomething
                const files = {}
                return files
            },
            afterUpload: ()=>{ // 上传之后dosomething

            }
        })
        // 其他插件
    ]
}
0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago