From 086c4315e2acdc63d02882036b4b164d7a62e1c4 Mon Sep 17 00:00:00 2001 From: danilo neves cruz Date: Sun, 14 Jul 2024 22:20:50 -0300 Subject: [PATCH] =?UTF-8?q?=E2=9A=97=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/.well-known/apple-app-site-association | 4 ++++ server/vercel.json | 9 +++++++++ 2 files changed, 13 insertions(+) diff --git a/server/.well-known/apple-app-site-association b/server/.well-known/apple-app-site-association index 0b1776f35..95bd9fa0e 100644 --- a/server/.well-known/apple-app-site-association +++ b/server/.well-known/apple-app-site-association @@ -3,5 +3,9 @@ "apps": [ "665NDX7LBZ.app.exactly.mobile" ] + }, + "applinks": { + "apps": [], + "details": [] } } diff --git a/server/vercel.json b/server/vercel.json index d3b6ff4a5..9573eaad5 100644 --- a/server/vercel.json +++ b/server/vercel.json @@ -4,5 +4,14 @@ "trailingSlash": false, "cleanUrls": true, "rewrites": [{ "source": "/:path((?!api/).*)", "destination": "/app/:path*" }], + "headers": [ + { + "source": "/.well-known/(.*)", + "headers": [ + { "key": "Content-Type", "value": "application/json" }, + { "key": "Content-Disposition", "value": "inline" } + ] + } + ], "$schema": "https://openapi.vercel.sh/vercel.json" }