strapi v4 in admin auth page cannot update helmet title

46 Views Asked by At

want to change the Strapi Admin into my custom name but in strapi v3 we have the option to modify in the helmet title inside the AuthPage folder but i can't do it same in the strapi v4. enter image description here

list of available translations

https://github.com/strapi/strapi/blob/main/packages/core/admin/admin/src/translations/en.json

thanks in advance

i have tried modified transaction like "AuthPage.helmet.title": "Login - my website",but still it's doesn't work

enter image description here

1

There are 1 best solutions below

3
ccl0504 On

The "AuthPage.helmet.title" is not an entry defined in the available translations .

You can change your title through /src/admin/app.js :

config: {
    ...
    translations: {
      en: {
        "Auth.form.welcome.title": "Welcome to My test App V2 !",
        "Auth.form.welcome.subtitle": "Log in to My test App V2",
      },
    }
}

https://forum.strapi.io/t/how-to-change-title-in-login-page/19960

enter image description here