mirror of
https://github.com/MAGICGrants/campaign-site.git
synced 2026-01-09 20:38:02 -05:00
12 lines
218 B
TypeScript
12 lines
218 B
TypeScript
import { withAuth } from 'next-auth/middleware'
|
|
|
|
// export { default } from 'next-auth/middleware'
|
|
|
|
export default withAuth({
|
|
pages: {
|
|
signIn: '/',
|
|
},
|
|
})
|
|
|
|
export const config = { matcher: ['/account/:path*'] }
|