Customize the dashboard / welcome page

A solution that works for me:

  1. yarn add patch-packagenpm --save
  2. modified files in node_modules
  3. yarn patch-package @strapi/admin (A patches folder will appear in the root directory of your project)
  4. yarn patch-package
  5. yarn build
  6. yarn develop

is done.

I modified these files:

  1. node_modules/@strapi/admin/admin/src/pages/HomePage/HomeHeader.js
  2. node_modules/@strapi/admin/admin/src/pages/HomePage/index.js
  3. node_modules/@strapi/admin/admin/src/translations/zh-Hans.json

Reference links:
https://github.com/strapi/strapi/issues/13523

2 Likes