Home > Software design >  Any way to upload DNS records to free Firebase domains?
Any way to upload DNS records to free Firebase domains?

Time:05-16

Firebase provide 2 free domains per project, but is it possible to upload DNS records?

I want to enable Firebase Dynamic Links. Then I need to upload DNS records but I can'T find how to do it.

Anybody knows?

CodePudding user response:

Firebase does not provide DNS service. You must bring your own DNS provider.

Once you have your own DNS, you can connect it to Dynamic Links using the instructions in the documentation.

If you are using Firebase Hosting, you can connect it to Firebase Hosting using the instructions provided in the documentation.

CodePudding user response:

DNS services are normally provided by your domain registrar, so the company where you registered your domain. Firebase doesn't offer domain registration services, so it doesn't allow you to manage DNS records either. Check with the place where you registered your domain for how to manage the DNS for that domain too.

  • Related