logocreator / middleware.ts
fengmiguoji's picture
Upload folder using huggingface_hub
c0a5c18 verified
raw
history blame contribute delete
719 Bytes
import { NextResponse, NextFetchEvent } from "next/server";
import type { NextRequest } from "next/server";
export default async function middleware(
req: NextRequest,
evt: NextFetchEvent,
) {
const country = req.geo?.country;
// Check for Russian traffic first as there's too much spam from Russia
if (country === "RU") {
return new NextResponse("Access Denied", { status: 403 });
}
// If not from Russia, proceed without any further authentication
return NextResponse.next();
}
export const config = {
matcher: [
// Skip Next.js internals and static files
"/((?!_next|[^?]*\\.(?:html?|css|js(?!on)|jpe?g|webp|png|gif|svg|ttf|woff2?|ico|csv|docx?|xlsx?|zip|webmanifest)).*)",
],
};