fix: remove /s/* from clerk auth

This commit is contained in:
2024-01-15 16:54:21 +01:00
parent c069015aee
commit f623be337e

View File

@@ -4,7 +4,7 @@ import { authMiddleware } from "@clerk/nextjs";
// Please edit this to allow other routes to be public as needed.
// See https://clerk.com/docs/references/nextjs/auth-middleware for more information about configuring your Middleware
export default authMiddleware({
publicRoutes: ['/']
publicRoutes: ['/', '/s/*']
});
export const config = {