When the app is started at localhost:3000 it defaults to this route localhost:3000/home which return a 404 not found error.
According to the route configuration in src/app/routes.jsx
{ path: '/', element: <Navigate to="dashboard/default" /> },
it should render localhost:3000/dashboard/default.
I cannot figure out where is http://localhost:3000/home route coming from.
When the app is started at
localhost:3000it defaults to this routelocalhost:3000/homewhich return a 404 not found error.According to the route configuration in
src/app/routes.jsx{ path: '/', element: <Navigate to="dashboard/default" /> },it should render
localhost:3000/dashboard/default.I cannot figure out where is
http://localhost:3000/homeroute coming from.