Files
Open-Assistant/website/src/middleware.ts
T
2023-01-08 10:52:57 +01:00

9 lines
264 B
TypeScript

export { default } from "next-auth/middleware";
/**
* Guards these pages and redirects them to the sign in page.
*/
export const config = {
matcher: ["/create/:path*", "/evaluate/:path*", "/label/:path*", "/account/:path*", "/dashboard", "/admin/:path*"],
};