Skip to content

Instantly share code, notes, and snippets.

@jeffposnick
Created September 20, 2019 00:56
Show Gist options
  • Star 51 You must be signed in to star a gist
  • Fork 17 You must be signed in to fork a gist
  • Save jeffposnick/fc761c06856fa10dbf93e62ce7c4bd57 to your computer and use it in GitHub Desktop.
Save jeffposnick/fc761c06856fa10dbf93e62ce7c4bd57 to your computer and use it in GitHub Desktop.
Example of InjectManifest in Workbox v5
// Add any other logic here as needed.
import { CacheableResponsePlugin } from 'workbox-cacheable-response/CacheableResponsePlugin';
import { CacheFirst } from 'workbox-strategies/CacheFirst';
import { createHandlerForURL } from 'workbox-precaching/createHandlerForURL';
import { ExpirationPlugin } from 'workbox-expiration/ExpirationPlugin';
import { NavigationRoute } from 'workbox-routing/NavigationRoute';
import { precacheAndRoute } from 'workbox-precaching/precacheAndRoute';
import { registerRoute } from 'workbox-routing/registerRoute';
precacheAndRoute(self.__WB_MANIFEST);
registerRoute(
new NavigationRoute(createHandlerForURL('react/dist/index.html'), {
blacklist: [/\/activate\b/]
})
);
registerRoute(
/^https:\/\/mylibrary\.io\/graphql\?.+cache%22:1/,
new CacheFirst({
cacheName: 'short-cache',
matchOptions: {
ignoreVary: true
},
plugins: [
new ExpirationPlugin({
maxEntries: 500,
maxAgeSeconds: 300,
purgeOnQuotaError: true,
}),
new CacheableResponsePlugin({
statuses: [0, 200]
}),
]
}));
registerRoute(
/^https:\/\/mylibrary\.io\/graphql\?.+cache%22:5/,
new CacheFirst({
cacheName: 'medium-cache',
matchOptions: {
ignoreVary: true,
},
plugins: [
new ExpirationPlugin({
maxEntries: 500,
maxAgeSeconds: 86400,
purgeOnQuotaError: true,
}),
new CacheableResponsePlugin({
statuses: [0, 200]
}),
],
})
);
registerRoute(
/^https:\/\/mylibrary\.io\/graphql\?.+cache%22:9/,
new CacheFirst({
cacheName: 'max-cache',
matchOptions: {
ignoreVary: true,
},
plugins: [
new ExpirationPlugin({
maxEntries: 500,
maxAgeSeconds: 63072e3,
purgeOnQuotaError: true,
}),
new CacheableResponsePlugin({
statuses: [0, 200]
})]
})
);
registerRoute(/^https:\/\/s3.amazonaws.com\/my-library-cover-uploads/, new CacheFirst({
cacheName: 'local-images1',
matchOptions: {
ignoreVary: true,
},
plugins: [new ExpirationPlugin({
maxEntries: 500,
maxAgeSeconds: 63072e3,
purgeOnQuotaError: true,
}), new CacheableResponsePlugin({
statuses: [0, 200]
})]
}));
registerRoute(/^https:\/\/my-library-cover-uploads.s3.amazonaws.com/, new CacheFirst({
cacheName: 'local-images2',
matchOptions: {
ignoreVary: true,
},
plugins: [new ExpirationPlugin({
maxEntries: 500,
maxAgeSeconds: 63072e3,
purgeOnQuotaError: true,
}), new CacheableResponsePlugin({
statuses: [0, 200]
})]
}));
self.addEventListener('message', (event) => {
if (event.data && event.data.type === 'SKIP_WAITING') {
self.skipWaiting();
}
});
const path = require('path');
const {InjectManifest} = require('workbox-webpack-plugin');
module.exports = {
mode: 'production',
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.bundle.js'
},
plugins: [
new InjectManifest({
swSrc: './service-worker.js',
swDest: 'service-worker.js',
// Any other config if needed.
}),
],
};
@nianyi-778
Copy link

Update project what would you do? Index.html has been pre cache and went in.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment