Customize the dashboard / welcome page

I found another way that should be better.

  1. Create a new plugin using npx strapi generate, name it: dashboard
  2. modify file node_modules/@strapi/admin/admin/src/pages/HomePage/index.js
import { Redirect } from 'react-router-dom';

export const HomePageCE = () => {
  // add this line
  return <Redirect to={'/plugins/dashboard'} />;
}
  1. use patch-package to patch that file
    then you your admin page should redirect to your plugin :smiley:
1 Like