From 4bdbc6f2581633c4c5905d5689f3cca77a024f40 Mon Sep 17 00:00:00 2001 From: Mike Fotinakis Date: Tue, 21 Mar 2017 11:08:16 -0700 Subject: [PATCH] Increase max filesize to 15MiB. --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 2e4dd197..8371caf5 100644 --- a/index.js +++ b/index.js @@ -28,7 +28,7 @@ var SKIPPED_ASSETS = [ /\.log$/, /\.DS_Store$/ ]; -var MAX_FILE_SIZE_BYTES = 5242880; // 5MB. +var MAX_FILE_SIZE_BYTES = 15728640; // 15MB. // Synchronously walk the build directory, read each file and calculate its SHA 256 hash, // and create a mapping of hashes to Resource objects.