VITE
This page describes how to remove auth for VITE
Disable Authentication Temporary
// import AuthGuard from 'utils/route-guard/AuthGuard';
...
...
const MainRoutes = {
path: '/',
element: (
// <AuthGuard>
<MainLayout />
// </AuthGuard>
),
...
}
Remove Authentication Permanent
Last updated