How to modify the tab page name in react

foreword

The default tab opened by React is called React App, so how do we globally change the tab name according to our project?
insert image description here

method

Find the public folder in the project, then find the index.html file below, and modify the

<title>React App</title>

Change the React App to the name you want

insert image description here
If you want to modify the icon, also find the relevant tags in this file to make changes.

Guess you like

Origin blog.csdn.net/weixin_43896829/article/details/115211251