feat: server web ui - set usecompression default value to false

This commit is contained in:
Minwoo 2024-12-23 01:37:55 +09:00
parent 9194cbd718
commit cc76ffb3fd

View File

@ -19,7 +19,7 @@ import { asyncIterator } from '@sec-ant/readable-stream/ponyfill/asyncIterator';
import pako from "pako";
const isDev = import.meta.env.MODE === "development";
const useCompression = true; // set to true if you want to use gzip compression for local storage
const useCompression = false; // set to true if you want to use gzip compression for local storage
// utility functions
const isString = (x) => !!x.toLowerCase;