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" }