Complete the code to add a custom domain to your Firebase project.
firebase hosting:sites:create [1]You need to specify your custom site name when creating a hosting site.
Complete the command to add a custom domain to your Firebase hosting site.
firebase hosting:sites:domain:add [1] example.comYou must specify the hosting site name where you want to add the custom domain.
Fix the error in the DNS verification command for Firebase custom domain.
firebase hosting:sites:domain:verify [1] example.comThe verification command requires the exact hosting site name where the domain was added.
Fill both blanks to configure the DNS records for your custom domain.
Add a [1] record pointing to [2] to your domain's DNS settings.
Firebase requires an A record pointing to the IP address 199.36.158.100 for custom domains.
Fill all three blanks to complete the Firebase hosting configuration file for your custom domain.
{
"hosting": {
"site": "[1]",
"public": "[2]",
"ignore": ["[3]"]
}
}The 'site' is your Firebase hosting site name, 'public' is the folder with your files, and 'ignore' excludes files like 'node_modules'.