0.1.6 • Published 7 years ago
aliyun-oss-loader v0.1.6
aliyun-oss-loader
a webpack loader for uploading files to aliyun oss
usage
npm install aliyun-oss-loader --save-dev
set config in your webpack file
module: {
loaders: [
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'aliyun-oss-loader',
options: {
region: 'xxxxxxxxx',
bucket: 'xxxxxx',
accessKeyId: 'xxxxx',
accessKeySecret: 'xxxx',
name: 'folder/[name].[hash].[ext]',
https: true,
domain: 'img.xxx.com'
}
}
]
}