From 3664c4a3f30b57e109f0cd2873aa95344e576a41 Mon Sep 17 00:00:00 2001 From: yflory Date: Fri, 2 May 2025 10:52:17 +0200 Subject: [PATCH] Use unminified build in dev mode --- www/common/store-interface.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/common/store-interface.js b/www/common/store-interface.js index 5ecf2c679..3d7a3058f 100644 --- a/www/common/store-interface.js +++ b/www/common/store-interface.js @@ -4,7 +4,8 @@ (() => { const factory = function () { - let USE_MIN = false; + let USE_MIN = true; + if (localStorage.CryptPad_dev === "1") { USE_MIN = false; } let path = '/common/worker.bundle.js?'; if (USE_MIN) { path = '/common/worker.bundle.min.js?'; }