mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-28 16:20:34 +08:00
9 lines
245 B
TypeScript
9 lines
245 B
TypeScript
export { default } from "next-auth/middleware";
|
|
|
|
/**
|
|
* Guards all pages under `/grading` and redirects them to the sign in page.
|
|
*/
|
|
export const config = {
|
|
matcher: ["/create/:path*", "/evaluate/:path*", "/account/:path*", "/dashboard"],
|
|
};
|