You can customize both the app name, Icon, Logo specific to your project using environment variables.
- Open the
.envfile located at the root of your project. - Add or update the following variable:
NEXT_PUBLIC_APP_NAME=Your App Name
- This app name will be used in the browser tab title or anywhere the app name is referenced using environment variables.
- Ensure your logo is in
.png,.jpgformat. - Place the logo file inside the
publicdirectory (e.g.,/public/icon.png). - Open the
.envfile and add or update the following variable:NEXT_PUBLIC_APP_ICON_PATH_PATH=/favicon.png
- Adjust the path if your icon is in a different location within the
publicdirectory.
- Open the
.envfile located at the root of your project. - Add or update the following variable:
NEXT_PUBLIC_APP_LOGO_PATH=/logo.png
- Adjust the path if your logo is in a different location within the
publicdirectory.