From 90e337308677941a46fb426e12dfbf58545b8a61 Mon Sep 17 00:00:00 2001 From: Max Stoiber Date: Wed, 27 Jun 2018 11:15:57 +0200 Subject: [PATCH] Default autoUpdate to true Not sure when you'd ever want your ServiceWorker to not update ever? That seems like the way less common case than updating on change. --- src/default-options.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/default-options.js b/src/default-options.js index 9105f6af..0e0bd917 100644 --- a/src/default-options.js +++ b/src/default-options.js @@ -23,7 +23,7 @@ export default { // Hack to have intermediate value, e.g. default one, true and false relativePaths: ':relativePaths:', version: null, - autoUpdate: false, + autoUpdate: true, cacheMaps: null, appShell: null, @@ -67,4 +67,4 @@ export default { noVersionDump: false, appCacheEnabled: false } -}; \ No newline at end of file +};