管理授权页面中的strapi v4无法更新头盔标题

问题描述 投票:0回答:1

想要将 Strapi Admin 更改为我的自定义名称,但在 Strapi v3 中,我们可以选择修改 AuthPage 文件夹内的头盔标题,但我无法在 Strapi v4 中执行相同操作。

可用翻译列表

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

提前致谢

我尝试过修改事务,例如“AuthPage.helmet.title”:“登录 - 我的网站”,但仍然不起作用

node.js content-management-system strapi nuxt-strapi
1个回答
0
投票

“AuthPage.helmet.title”不是在可用翻译中定义的条目。

您可以通过 /src/admin/app.js 更改您的标题:

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

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

© www.soinside.com 2019 - 2024. All rights reserved.