2 つのワークスペースがあります。
main
blog
クイックスタート ガイドを使用して、main
ワークスペースをに正常にデプロイできましたmycustomdomain.firebaseapp.com
。
私firebase.json
の見た目は次のとおりです。
{
"firebase": "mycustomdomain",
"public": "/",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [ {
"source": "**",
"destination": "/index.html"
} ]
}
私は Angular 1.x Web サイトをホストしているため、クリーンな URL を処理するために書き換えを使用していることに注意してください。
blog
次に、ワークスペースのコンテンツを domainにアップロードしますmycustomdomain.firebaseapp.com/blog
。どうすればこれを達成できますか?