I'm trying to link my iOS App to a Gatsby website but I can't find how to show the following JSON file at a specific URL in my Gatsby website
I've added the JSON file inside my Static Folder
{
"applinks":{
"apps":[
],
"details":[
{
"appID":"XXX.com.XXX.XXXX",
"paths":[
"*"
]
}
]
},
"webcredentials":{
"apps":[
"XXXX.com.XXXX.XXXXX"
]
}
}
and I would now like it to show it up at this URL : mydomain.org/.well-known/apple-app-site-association


The file should be at:
According to the structure of the static folder.
Because Gatsby clones the internal structure, and because the file it's a JSON extension (
.json) the internal folder structure of the static folder becomes the path of the file.