refactor(docs-infra): more some `pwa-manifest.json` keys to the top to improve readability (#40393)

This commit moves some properties with simple, string values in
`pwa-manifest.json` to the top (i.e. above the more lengthy `icons`
array) to make them easier to discover.

PR Close #40393
This commit is contained in:
George Kalpakas 2021-01-14 16:21:50 +02:00 committed by Andrew Kushnir
parent 54579362ae
commit 4065c98054
1 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,9 @@
{
"short_name": "angular.io",
"name": "Angular Documentation",
"short_name": "angular.io",
"background_color": "#1976d2",
"theme_color": "#1976d2",
"display": "standalone",
"icons": [
{
"src": "assets/images/favicons/favicon-194x194.png",
@ -19,8 +22,5 @@
"purpose": "maskable"
}
],
"start_url": "/?utm_source=homescreen",
"background_color": "#1976d2",
"theme_color": "#1976d2",
"display": "standalone"
"start_url": "/?utm_source=homescreen"
}