LoginSignup
4
4

More than 1 year has passed since last update.

Strapi v4で管理画面を日本語にしてロゴも変える

Posted at

https://github.com/strapi/strapi/issues/11912
※けっこう悩んでいる人多い?

https://docs.strapi.io/developer-docs/latest/development/admin-customization.html#configuration-options
※公式がけっこう分かりづらい

src/admin配下にextensionsフォルダを作成しロゴを配置する

menu-logo.png 32x32の画像で良さそうでした。
auth-logo.png 434x120の画像を用意

app.jsに追記

[src/admin/app.js]

import MenuLogo from "./extensions/menu-logo.png";
import AuthLogo from "./extensions/auth-logo.png";

export default {
  config: {
    locales: ["ja"],
    auth: {
      logo: AuthLogo,
    },
    menu: {
      logo: MenuLogo,
    },
  },
  bootstrap() {},
};

yarn buildが必要

yarn build or npm run buildが必要。これにハマりました。

4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4