Public
Likeuntitled-4841
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
const REAL_URL = "https://apple.nextdns.io/NextDNS%20(aa5bc2).mobileconfig?sign=1"; const EXPIRE_MS = 30 * 60 * 1000; const CREATED_AT = Date.now();
export default async function(req: Request) { if (Date.now() - CREATED_AT > EXPIRE_MS) { return new Response("Link da het han", { status: 410 }); } return Response.redirect(REAL_URL, 302); }