fix and update

This commit is contained in:
lendry
2026-07-07 10:29:07 +03:00
parent bd6cd0d798
commit 12f46f572d
10 changed files with 115 additions and 31 deletions

View File

@@ -3,6 +3,6 @@ import { NextRequest, NextResponse } from 'next/server';
export const runtime = 'nodejs';
export async function GET(request: NextRequest) {
const target = new URL('/downloads/android', request.nextUrl.origin);
const target = new URL('/downloads', request.nextUrl.origin);
return NextResponse.redirect(target, 302);
}