Files
sune/functions/.well-known/assetlinks.json.js
2025-08-26 10:52:05 -07:00

8 lines
455 B
JavaScript

export const onRequestGet = async () => {
const url = "https://raw.githubusercontent.com/OWNER/REPO/BRANCH/.well-known/assetlinks.json";
const r = await fetch(url, { cf: { cacheTtl: 0, cacheEverything: false } });
if (!r.ok) return new Response("not found", { status: 404 });
const body = await r.text();
return new Response(body, { status: 200, headers: { "content-type": "application/json; charset=utf-8", "cache-control": "no-store" } });
};