Customize the dashboard / welcome page

Hello @lnhh,

The Home page is located under the next path:

./node_modules/strapi-admin/admin/src/containers/HomePage/index.js

To modify it, you need to copy the index.js file to:

./admin/src/containers/HomePage/index.js

cmd to copy it:

mkdir -p ./admin/src/containers/HomePage/ && cp ./node_modules/strapi-admin/admin/src/containers/HomePage/index.js ./admin/src/containers/HomePage/index.js

Now you can edit it. Don’t forget to use yarn build after modifications.

2 Likes