Skip to content

Instantly share code, notes, and snippets.

@NekR
Created June 12, 2016 10:23
Show Gist options
  • Save NekR/06210fc9dea3a9f7850c1f89c9e5dcb5 to your computer and use it in GitHub Desktop.
Save NekR/06210fc9dea3a9f7850c1f89c9e5dcb5 to your computer and use it in GitHub Desktop.
webpack's offline-plugin + sw-toolbox
// webpack.config.js

return {
  plugins: [
    new OfflinePlugin({
      ServiceWorker: {
        entry: 'sw-handler.js'
      }
    })
  ]
};
// sw-handler.js

const toolbox = require('sw-toolbox');

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