When I have admin-on-rest app running, the client Chrome Tab always shows "React App" instead of whatever title I set in Admin component in App.js. Is there way to customize the tile of the tab to something else?
Asked
Active
Viewed 6,759 times
1 Answers
6
Found the solution: https://serverless-stack.com/chapters/create-a-new-reactjs-app.html
It's a matter of changing index.html
Open up public/index.html and edit the title tag to the following:
Scratch - A simple note taking app

blueheart_2
- 153
- 2
- 7
-
1I'd like to piggy-back off of @gliu_me answers and add that you can use `react-helmet` to further manipulate head's data. Read more at https://alligator.io/react/react-helmet/ – Harry Adel Jan 17 '19 at 17:36