You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
352 B
15 lines
352 B
1 year ago
|
/**
|
||
|
* 阿里云oss配置
|
||
|
* */
|
||
|
|
||
|
export default {
|
||
|
// oss账号信息
|
||
|
config: {
|
||
|
region: 'oss-cn-shenzhen',
|
||
|
accessKeyId: 'LTAI4FzqQHnk4rozqLZ8jCNj',
|
||
|
accessKeySecret: 'mveW7B1OyFoKUkHm8WsxmrjHmkJWHq',
|
||
|
bucket: 'huoran'
|
||
|
},
|
||
|
// 上传成功url前置部分(成功回调没有返回url)
|
||
|
preUrl: 'https://huoran.oss-cn-shenzhen.aliyuncs.com/'
|
||
|
}
|