Use unminified build in dev mode

This commit is contained in:
yflory 2025-05-02 10:52:17 +02:00
parent 01440e82c6
commit 3664c4a3f3

View File

@ -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?'; }