浮声新志

webpack插件篇:S3Plugin详解

用途说明

S3Plugin ()

Uploads your content to s3. Can also run your html files through cdnizer to change the url to match

webpack.config.js配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
S3Plugin = require('webpack-s3-plugin')
new S3Plugin({
exclude: RegExp,
s3Options: {
accessKeyId: string,
secretAccessKey: string,
region: string
},
s3UploadOptions: {
Bucket: string
},
cdnizerOptions: {
defaultCDNBase: string
}
})

案例

1
2