我有两个工作区:
main
blog
使用快速入门指南,我成功地将main
工作区部署到mycustomdomain.firebaseapp.com
.
我的firebase.json
样子如下:
{
"firebase": "mycustomdomain",
"public": "/",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [ {
"source": "**",
"destination": "/index.html"
} ]
}
请注意,当我托管 Angular 1.x 网站时,我使用重写来处理干净的 url。
现在,我想将blog
工作区的内容上传到 domain mycustomdomain.firebaseapp.com/blog
。我怎样才能做到这一点?