NextJS
This page describes how to remove auth for NextJS
Disable Authentication Temporary
// import AuthGuard from 'utils/route-guard/AuthGuard';
...
...
return (
// <AuthGuard>
<DashboardLayout>{children}</DashboardLayout>
// </AuthGuard>
);
Remove Authentication Permanent
Last updated