From 4ac903787ad01e9c40a3c5959dab9bd88dac7375 Mon Sep 17 00:00:00 2001 From: lukestahl Date: Fri, 22 Sep 2023 17:18:53 +0200 Subject: [PATCH] exclude auth routes --- public/.well-known/apple-app-site-association | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/public/.well-known/apple-app-site-association b/public/.well-known/apple-app-site-association index 6bd49b4..1170757 100644 --- a/public/.well-known/apple-app-site-association +++ b/public/.well-known/apple-app-site-association @@ -5,8 +5,16 @@ "appIDs": [ "3X5J8LXMDM.com.lukesthl.expo-supertokens" ], - "paths": [ - "*" + "components": [ + { + "/": "*", + "comment": "Matches all routes" + }, + { + "/": "/auth/*", + "comment": "Matches any route whose path starts with /auth/", + "exclude": true + } ] } ]