From 94d926e61e33798e54971b2e6573a47779d88dfe Mon Sep 17 00:00:00 2001 From: ManulParihar Date: Mon, 10 Nov 2025 19:17:09 +0530 Subject: [PATCH] Directing vercel to recognise AASA file as application/json and not application/octet-stream --- vercel.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 vercel.json diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..3451020 --- /dev/null +++ b/vercel.json @@ -0,0 +1,13 @@ +{ + "headers": [ + { + "source": "/.well-known/apple-app-site-association", + "headers": [ + { + "key": "Content-Type", + "value": "application/json" + } + ] + } + ] +}