Deploying our Apps to Firebase
Deploying our apps to Firebase is quite easy using the Firebase CLI’s deploy command. However, before we run our Firebase deploy command, we need to let Firebase know which micro-apps go into the corresponding Firebase website. We do this in the /firebase.json file.
Replace the default configuration with the following:
{
"hosting": [
{
"target": "app-shell",
"public": "dist/apps/app-shell",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
...