#react

Public snippets tagged with react

Back to Explore
reacttypescriptnextjs
typescript
import type { NextRequest } from "next/server";
import { NextResponse } from "next/server";

const protectedRoutes = [
  "/create",
  "/profile",
  "/settings",
  "/my-snippets",
];

export async function middleware(request: NextRequest) {
  const { pathname } = request.nextUrl;
  try {
    // Récup...
Jiordi Viera
Jiordi Viera
---
0