How can I change the default menu title "Strapi Dashboard"

System Information
  • Strapi Version: 4.0.7
  • Operating System: OSX
  • Database: Postgres
  • Node Version: 16.13.2
  • NPM Version: 8.1.2
  • Yarn Version: 1.22.17

How can I change the default menu title “Strapi Dashboard” in the admin panel?

3 Likes

src > admin > app.js

Add to default config:

translations: {
      en: {
        'app.components.LeftMenu.navbrand.title': 'Custom name',
        'app.components.LeftMenu.navbrand.title': 'Custom workplace'
      }
    },
5 Likes

Yup works fine thanks, just need to delete .cache and dist so it rebuilds