You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 26, 2025. It is now read-only.
[React C#] Change web app manifest extension to “webmanifest” (#80)
* Change web app manifest extension to “webmanifest”
* Update Web App Manifest comment
- Web apps can be installed on more devices than just Android. All relevant desktop and mobile operating systems are supported (depending on the browser). That’s why I propose to use “installed” instead of “added to the homescreen”, which is a mobile-only metaphor.
- The URL has changed.
Copy file name to clipboardExpand all lines: src/content/React-CSharp/ClientApp/README.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1704,13 +1704,13 @@ option in the `SWPrecacheWebpackPlugin` section of
1704
1704
### Progressive Web App Metadata
1705
1705
1706
1706
The default configuration includes a web app manifest located at
1707
-
[`public/manifest.json`](public/manifest.json), that you can customize with
1708
-
details specific to your web application.
1707
+
[`public/manifest.webmanifest`](public/manifest.webmanifest), that you can
1708
+
customize with details specific to your web application.
1709
1709
1710
1710
When a user adds a web app to their homescreen using Chrome or Firefox on
1711
-
Android, the metadata in [`manifest.json`](public/manifest.json) determines what
1712
-
icons, names, and branding colors to use when the web app is displayed.
1713
-
[The Web App Manifest guide](https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/)
1711
+
Android, the metadata in [`manifest.webmanifest`](public/manifest.webmanifest)
1712
+
determines what icons, names, and branding colors to use when the web app is
1713
+
displayed. [The Web App Manifest guide](https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/)
1714
1714
provides more context about what each field means, and how your customizations
1715
1715
will affect your users' experience.
1716
1716
@@ -1836,7 +1836,7 @@ service worker navigation routing can be configured or disabled by
1836
1836
and [`navigateFallbackWhitelist`](https://github.com/GoogleChrome/sw-precache#navigatefallbackwhitelist-arrayregexp)
1837
1837
options of the `SWPreachePlugin` [configuration](../config/webpack.config.prod.js).
1838
1838
1839
-
When users install your app to the homescreen of their device the default configuration will make a shortcut to `/index.html`. This may not work for client-side routers which expect the app to be served from `/`. Edit the web app manifest at [`public/manifest.json`](public/manifest.json) and change `start_url` to match the required URL scheme, for example:
1839
+
When users install your app to the homescreen of their device the default configuration will make a shortcut to `/index.html`. This may not work for client-side routers which expect the app to be served from `/`. Edit the web app manifest at [`public/manifest.webmanifest`](public/manifest.webmanifest) and change `start_url` to match the required URL scheme, for example:
0 commit comments