Skip to content

Instantly share code, notes, and snippets.

@andreban
Last active February 20, 2017 19:48
Show Gist options
  • Save andreban/a40457c3ab573a93658b8886bc5f22db to your computer and use it in GitHub Desktop.
Save andreban/a40457c3ab573a93658b8886bc5f22db to your computer and use it in GitHub Desktop.
gulp.task('generate-service-worker', callback => {
const rootDir = 'dist';
swPrecache.write(path.join(rootDir, 'service-worker.js'), {
staticFileGlobs: [rootDir + '/**/*.{js,html,css,png,jpg,gif,svg,eot,ttf,woff}'],
stripPrefix: rootDir
}, callback);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment