I found another way that should be better.
- Create a new plugin using
npx strapi generate
, name it:dashboard
- 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'} />;
}
- use
patch-package
to patch that file
then you your admin page should redirect to your plugin