Fix apple-app-site-assoctiation no_universal_link query matching.

https://developer.apple.com/videos/play/wwdc2019/717/

```
You'll notice that I specify a question mark and an asterisk as the pattern from the query items value. A pattern consisting of a single asterisk matches any string, including the empty string. And a missing query item has a value equivalent to the empty string. So to match against the string that's at least one character long, I specify a question mark and then any additional characters are matched by the asterisk.
```
This commit is contained in:
Stefan Ceriu
2023-10-04 14:03:29 +03:00
parent a3eb58f9fe
commit ad462f3d8e

View File

@@ -10,7 +10,7 @@
"components": [
{
"?": {
"no_universal_links": "*"
"no_universal_links": "?*"
},
"exclude": true,
"comment": "Opt out of universal links"