对象存储部署前端项目,支持阿里云/腾讯云/七牛云
1. 安装依赖包
npm install cdn-cli -g
2. 初始化项目
cdn init aliyun # 阿里云
cdn init tencent # 腾讯云
cdn init qiniu # 七牛云
3. 配置
deploy-config/config.json
{
"type": "aliyun",
"deploy": {
"directories": [
{
"from": "./dist",
"to": "."
},
"./static"
],
"files": [
{
"from": "./product.html",
"to": "./item.html"
},
1