From ae324d389e20a9a527d15a4528e3dc5d544b97ed Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Tue, 26 Aug 2025 11:01:35 -0700 Subject: [PATCH] Delete functions/.well-known/assetlinks.json.js --- functions/.well-known/assetlinks.json.js | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 functions/.well-known/assetlinks.json.js diff --git a/functions/.well-known/assetlinks.json.js b/functions/.well-known/assetlinks.json.js deleted file mode 100644 index 9eb3782..0000000 --- a/functions/.well-known/assetlinks.json.js +++ /dev/null @@ -1,7 +0,0 @@ -export const onRequestGet = async () => { - const url = "https://raw.githubusercontent.com/multipleof4/sune/master/public/.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" } }); -};