chore: bump version to 2.19.1 and update proxy imports

- Incremented application version from 2.19.0 to 2.19.1 in package.json.
- Updated import statement in proxy.ts to use URLPattern from 'node:url' instead of 'next/server'.
This commit is contained in:
gbuomprisco
2025-10-22 14:26:53 +09:00
parent 2c0d0bf7a1
commit f6d573819b
2 changed files with 3 additions and 2 deletions

View File

@@ -1,7 +1,8 @@
import type { NextRequest } from 'next/server';
import { NextResponse, URLPattern } from 'next/server';
import { NextResponse } from 'next/server';
import { CsrfError, createCsrfProtect } from '@edge-csrf/nextjs';
import { URLPattern } from 'node:url';
import { isSuperAdmin } from '@kit/admin';
import { checkRequiresMultiFactorAuthentication } from '@kit/supabase/check-requires-mfa';