mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-11 09:51:47 +00:00
25 lines
765 B
TypeScript
25 lines
765 B
TypeScript
import type { NextAuthConfig } from 'next-auth';
|
|
|
|
export const authConfig = {
|
|
pages: {
|
|
signIn: '/login',
|
|
},
|
|
providers: [
|
|
// added later in auth.ts since it requires bcrypt which is only compatible with Node.js
|
|
// while this file is also used in non-Node.js environments
|
|
],
|
|
callbacks: {
|
|
authorized({ auth, request: { nextUrl } }) {
|
|
const isLoggedIn = !!auth?.user;
|
|
const isOnDashboard = nextUrl.pathname.startsWith('/dashboard');
|
|
if (isOnDashboard) {
|
|
if (isLoggedIn) return true;
|
|
return false; // Redirect unauthenticated users to login page
|
|
} else if (isLoggedIn) {
|
|
return Response.redirect(new URL('/dashboard', nextUrl));
|
|
}
|
|
return true;
|
|
},
|
|
},
|
|
} satisfies NextAuthConfig;
|