We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75ab9b8 commit a5c76fcCopy full SHA for a5c76fc
packages/gatsby-plugin-offline/README.md
@@ -146,9 +146,10 @@ const options = {
146
handler: `CacheFirst`,
147
},
148
{
149
- // page-data.json files are not content hashed
150
- urlPattern: /^https?:.*\page-data\/.*\/page-data\.json/,
151
- handler: `NetworkFirst`,
+ // page-data.json files, static query results and app-data.json
+ // are not content hashed
+ urlPattern: /^https?:.*\/page-data\/.*\.json/,
152
+ handler: `StaleWhileRevalidate`,
153
154
155
// Add runtime caching of various other page resources
0 commit comments