Skip to content
Snippets Groups Projects
Unverified Commit 69289418 authored by Doug's avatar Doug Committed by GitHub
Browse files

Fix the apple-app-site-association file. (#339)

parent 657fd9cc
No related branches found
No related tags found
No related merge requests found
...@@ -127,14 +127,17 @@ function buildAppleAssociatedAppsFile(clients) { ...@@ -127,14 +127,17 @@ function buildAppleAssociatedAppsFile(clients) {
const appIds = clients.map(c => c.appleAssociatedAppId).flat().filter(id => !!id); const appIds = clients.map(c => c.appleAssociatedAppId).flat().filter(id => !!id);
return JSON.stringify({ return JSON.stringify({
"applinks": { "applinks": {
"details": { "details": [
appIDs: appIds, {
components: [ appIDs: appIds,
{ components: [
"#": "/*", // only open urls with a fragment, so you can still create links {
} "#": "/*",
] "comment": "Only open urls with a fragment, so you can still create links"
}, }
]
}
]
} }
}); });
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment