mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-04-20 03:50:20 +00:00
Some checks failed
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 6m26s
11 lines
267 B
TypeScript
11 lines
267 B
TypeScript
import { withAuth } from "next-auth/middleware";
|
|
|
|
export default withAuth(
|
|
// `withAuth` augments your `Request` with the user's token.
|
|
function middleware(req) {},
|
|
);
|
|
|
|
export const config = {
|
|
matcher: ["/about/:path*", "/dashboard/:path*", "/devices/:path*"],
|
|
};
|