Firebase Hosting поддерживает несколько сайтов на проект. Затем можно настроить каждый сайт для обслуживания по пути.
{
"hosting": [ {
"target": "blog", // "blog" is the applied target name for the Hosting site "myapp-blog"
"public": "blog/dist", // contents of this folder are deployed to the site "myapp-blog"
// ...
},
{
"target": "app", // "app" is the applied target name for the Hosting site "myapp-app"
"public": "app/dist", // contents of this folder are deployed to the site "myapp-app"
// ...
"rewrites": [...] // You can define specific Hosting configurations for each site
}
]
}
https://firebase.google.com/docs/hosting/multisites#define_hosting_config