change the default localhost path. For example: http://localhost:3001/ by the path http://localhost:3001/home . I would like the when I launch npm start that I arrive directly on this path http://localhost:3001/ home . I tried modifying in the package.Json file, but it doesn't work. Thank you for help
<BrowserRouter>
<Routes>
<Route path={"/"} />
<Route element={<ViewParentCustomer />} >
<Route path={RouteTypes.REDIRECT_HOME} element={<Home/>} />
<Route path={RouteTypes.ROUTE_OUR_HISTORY} element={<OurHistory />} />
<Route path={RouteTypes.ROUTE_COMMAND_CUSTOMER_ACCOUNT} element={<ProtectedRoutes ><DetailCommand /></ProtectedRoutes>} />
<Route path={RouteTypes.ROUTE_SIGNUP} element={<Registration />} />
<Route path={RouteTypes.ROUTE_FORBIDDEN} element={<AccessForbidden />} />
</Route>
</Routes>
</BrowserRouter>