Formatting

This commit is contained in:
2025-05-13 09:28:44 -05:00
parent 6b667c2dad
commit a2f61ece94
15 changed files with 101 additions and 111 deletions

View File

@ -1,9 +1,9 @@
import { type NextRequest } from "next/server";
import { updateSession } from "@/utils/supabase/middleware";
import { type NextRequest } from 'next/server';
import { updateSession } from '@/utils/supabase/middleware';
export const middleware = async (request: NextRequest) => {
return await updateSession(request);
}
};
export const config = {
matcher: [
@ -15,6 +15,6 @@ export const config = {
* - images - .svg, .png, .jpg, .jpeg, .gif, .webp
* Feel free to modify this pattern to include more paths.
*/
"/((?!_next/static|_next/image|favicon.ico|.*\\.(?:svg|png|jpg|jpeg|gif|webp)$).*)",
'/((?!_next/static|_next/image|favicon.ico|.*\\.(?:svg|png|jpg|jpeg|gif|webp)$).*)',
],
};