Skip to content

Commit 8e640c3

Browse files
committed
fix: remove callback from aasa
1 parent 7ab16f3 commit 8e640c3

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

packages/webapp/next.config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,13 @@ const nextConfig: NextConfig = {
192192
},
193193
],
194194
},
195+
{
196+
source: '/.well-known/apple-app-site-association',
197+
headers: [
198+
{ key: 'Content-Type', value: 'application/json' },
199+
{ key: 'Cache-Control', value: 'no-cache' },
200+
],
201+
},
195202
];
196203
},
197204
poweredByHeader: false,

packages/webapp/public/.well-known/apple-app-site-association

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
{
66
"appIDs": ["C97TTQ7W57.dev.daily.app"],
77
"components": [
8+
{
9+
"/": "/callback*",
10+
"exclude": true,
11+
"comment": "Matches any OAuth callback URL"
12+
},
813
{
914
"/": "/*",
1015
"comment": "Matches any URL path under app.daily.dev"

0 commit comments

Comments
 (0)