diff --git a/apps/web/src/routes/.well-known/apple-app-site-association/+server.ts b/apps/web/src/routes/.well-known/apple-app-site-association/+server.ts index 1adf4cf..98b5039 100644 --- a/apps/web/src/routes/.well-known/apple-app-site-association/+server.ts +++ b/apps/web/src/routes/.well-known/apple-app-site-association/+server.ts @@ -34,7 +34,10 @@ export const GET: RequestHandler = async () => { details: [ { appID: `${teamId}.${bundleId}`, - paths: ['/d/*', '/u/*'], + // `/d/*` Deck-Slugs, `/u/*` User-Profile, `/auth/*` für + // Reset-/Verify-Mail-Klicks von mana-auth — der Mail-Link + // öffnet damit direkt die App via Universal Link. + paths: ['/d/*', '/u/*', '/auth/*'], }, ], },