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
Copy file name to clipboardExpand all lines: docusaurus/docs/making-a-progressive-web-app.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ the build process will generate a service worker file, but it will not be
10
10
registered, so it will not take control of your production web app.
11
11
12
12
In order to opt-in to the offline-first behavior, developers should look for the
13
-
following in their [`src/index.js`](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/src/index.js) file:
13
+
following in their [`src/index.js`](https://github.com/facebook/create-react-app/blob/master/packages/cra-template/template/src/index.js) file:
14
14
15
15
```js
16
16
// If you want your app to work offline and load faster, you can change
@@ -62,7 +62,7 @@ following into account:
62
62
fetched the latest updates that will be available the next time they load the
63
63
page (showing a "New content is available once existing tabs are closed." message). Showing
64
64
these messages is currently left as an exercise to the developer, but as a
65
-
starting point, you can make use of the logic included in [`src/serviceWorker.js`](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/src/serviceWorker.js), which
65
+
starting point, you can make use of the logic included in [`src/serviceWorker.js`](https://github.com/facebook/create-react-app/blob/master/packages/cra-template/template/src/serviceWorker.js), which
66
66
demonstrates which service worker lifecycle events to listen for to detect each
67
67
scenario, and which as a default, only logs appropriate messages to the
68
68
JavaScript console.
@@ -93,11 +93,11 @@ following into account:
93
93
## Progressive Web App Metadata
94
94
95
95
The default configuration includes a web app manifest located at
96
-
[`public/manifest.json`](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/public/manifest.json), that you can customize with
96
+
[`public/manifest.json`](https://github.com/facebook/create-react-app/blob/master/packages/cra-template/template/public/manifest.json), that you can customize with
97
97
details specific to your web application.
98
98
99
99
When a user adds a web app to their homescreen using Chrome or Firefox on
100
-
Android, the metadata in [`manifest.json`](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/public/manifest.json) determines what
100
+
Android, the metadata in [`manifest.json`](https://github.com/facebook/create-react-app/blob/master/packages/cra-template/template/public/manifest.json) determines what
101
101
icons, names, and branding colors to use when the web app is displayed.
102
102
[The Web App Manifest guide](https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/)
103
103
provides more context about what each field means, and how your customizations
0 commit comments