From 1f81fbb8c7467addcc284fdcd2332949ad81632d Mon Sep 17 00:00:00 2001 From: David Lechner Date: Sun, 10 Aug 2025 02:47:03 +0000 Subject: [PATCH] webpack: bump precache size to 16MiB for EV3 firmware --- config/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/webpack.config.js b/config/webpack.config.js index 9d4765cd..4af7ace4 100644 --- a/config/webpack.config.js +++ b/config/webpack.config.js @@ -705,7 +705,7 @@ module.exports = function (webpackEnv) { // Bump up the default maximum size (2mb) that's precached, // to make lazy-loading failure scenarios less likely. // See https://github.com/cra-template/pwa/issues/13#issuecomment-722667270 - maximumFileSizeToCacheInBytes: 10 * 1024 * 1024, + maximumFileSizeToCacheInBytes: 16 * 1024 * 1024, additionalManifestEntries: [ // FIXME: this path should have a hash { url: 'static/oss-licenses.json', revision: null },