From 9e4901e976256a3ecb2a7414fef4c270ad7f690b Mon Sep 17 00:00:00 2001 From: Caleb Evans Date: Fri, 16 Nov 2018 17:45:19 -0800 Subject: [PATCH] Do not cache SVG assets via service worker No SVG assets are really used on the front end, anyway. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index dea07a9..eea2b7e 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -51,7 +51,7 @@ gulp.task('sw', () => { return workboxBuild.injectManifest({ globDirectory: 'public', globPatterns: [ - '**\/*.{html,js,css,svg,png}' + '**\/*.{html,js,css,png}' ], swSrc: 'app/scripts/service-worker.js', swDest: 'public/service-worker.js'