My app has three separate environments named
Here are my three AASA files on my webservers.
Here are the same three AASA files on Apple's CDN
I have two questions.
I've done the generic Googling and docs reading around this. I can't seem to find anything specifically related to Apple's CDN.
Updating my AASA file's Cache-Control header to no-cache fixed this for me.
I use Next.js, so here is my next.config.js that fixed this for me.
{
source: "/.well-known/apple-app-site-association",
headers: [
{ key: "Content-Type", value: "application/json" },
{ key: "Cache-Control", value: "no-cache" },
],
},