The auth set in place makes it so you cannot see anything under the auth. We've worked through your Laravel API but thats also incomplete and there is zero documentation around that whatsoever. We just want to be able to see the underlying react demo without the Auth putting a brick wall between us.
Hi Bryan,
Thank you for reaching out to us.
To remove the authentication check from Metronic React you just need to delete a statement below from src/app/routing/AppRoutes.tsx.
{currentUser ? (
<>
<Route path="/*" element={<PrivateRoutes />} />
<Route index element={<Navigate to="/dashboard" />} />
</>
) : (
<>
<Route path="auth/*" element={<AuthPage />} />
<Route path="*" element={<Navigate to="/auth" />} />
</>
)}