remove sentry

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-04-17 09:40:29 +02:00
committed by Carl-Gerhard Lindesvärd
parent c333d660c3
commit e11ed557dc
13 changed files with 61 additions and 408 deletions

View File

@@ -4,12 +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: [
'/share/overview/:id',
'/api/trpc(.*)',
'/api/clerk/(.*)?',
'/monitoring',
],
publicRoutes: ['/share/overview/:id', '/api/trpc(.*)', '/api/clerk/(.*)?'],
debug: process.env.CLERK_DEBUG ? true : false,
});