Skip to content

Commit

Permalink
Fix app site association (#7694)
Browse files Browse the repository at this point in the history
  • Loading branch information
sliptype committed Feb 22, 2024
1 parent 84cb3a4 commit 7400627
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/web/scripts/workers-site/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,8 @@ function isAssetUrl(url) {
pathname.startsWith('/scripts') ||
pathname.startsWith('/fonts') ||
pathname.startsWith('/favicons') ||
pathname.startsWith('/manifest.json')
pathname.startsWith('/manifest.json') ||
pathname.startsWith('/.well-known')
)
}

Expand Down
3 changes: 2 additions & 1 deletion packages/web/src/ssr/worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ function isAssetUrl(url) {
pathname.startsWith('/scripts') ||
pathname.startsWith('/fonts') ||
pathname.startsWith('/favicons') ||
pathname.startsWith('/manifest.json')
pathname.startsWith('/manifest.json') ||
pathname.startsWith('/.well-known')
)
}

0 comments on commit 7400627

Please sign in to comment.