Firebase use this pattern for its database and auth and storage URL
auth: https://[PROJECT_ID]. firebaseapp.com
database: https://[PROJECT_ID].firebaseio.com
storage: https://[PROJECT_ID]. appspot.com
I need to map these URLs to my custom domain like this
auth: https://fbauth. [MY_CUSTOM_DOMAIN].com
database: https://fbdb.[MY_CUSTOM_DOMAIN].com
storage: https://fbstorage. [MY_CUSTOM_DOMAIN].com
It will help to improve my website SEO because all request will be served from my domain
I googled it and found this link Serving an API from Your Domain Name but I'm looking for a straight-forward solution.
Could you please first let me know if I'm doing the right thing And second, let me know how I should do this