I have deployed my website with firebase hosting. Everytime I go the site, there's still the name React App on the tabs of my browser. Do I have to purchase a domain name to get rid of it?
Asked
Active
Viewed 2,597 times
0
-
Are you looking for [favicon](https://stackoverflow.com/q/18301745/2873538)? See [this](https://www.w3schools.com/tags/tag_title.asp) for `
` tag. – Ajeet Shah Apr 04 '21 at 13:43
3 Answers
2
simply go to the /public
folder of your react app and change the <title> React App </title>
in index.html
file to whatever the title of your website is.

Bhuwan Chandra
- 294
- 1
- 9
1
You can change the title of the index.html
page in the public directory. And for the customizing the icon, you can change the favicon also located in the public directory.

Som Shekhar Mukherjee
- 4,701
- 1
- 12
- 28
0
in public folder edit manifest.json file
"short_name": "your_app_name" "name": "Your Tag Line"
for images just upload your images with same name for good result. Hope this answer will be helpful.

Sarafaraj Shaikh
- 1
- 1