Complete the code to initialize Firebase hosting for multiple sites.
firebase init hosting:[1]The command firebase init hosting:multi-sites initializes hosting for multiple sites in a Firebase project.
Complete the code to deploy a specific site named 'blog' in Firebase hosting.
firebase deploy --only hosting:[1]To deploy a specific site, use --only hosting:blog where 'blog' is the site name.
Fix the error in the Firebase configuration to add a new site named 'shop'.
"hosting": [{"site": "[1]", "public": "shop_public"}]
The site name must be 'shop' to match the new site configuration.
Fill both blanks to configure two sites 'app' and 'admin' in firebase.json.
"hosting": [ {"site": "[1]", "public": "app_public"}, {"site": "[2]", "public": "admin_public"} ]
The two sites are named 'app' and 'admin' and must be configured accordingly.
Fill all three blanks to deploy only the 'app' and 'admin' sites, excluding 'blog'.
firebase deploy --only hosting:[1],hosting:[2] --except hosting:[3]
Deploy only 'app' and 'admin' sites and exclude 'blog' using --only hosting:app,hosting:admin --except hosting:blog.