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が必要。これにハマりました。