Skip to content

Commit cc76ffb

Browse files
committed
feat: server web ui - set usecompression default value to false
1 parent 9194cbd commit cc76ffb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/server/webui/src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { asyncIterator } from '@sec-ant/readable-stream/ponyfill/asyncIterator';
1919
import pako from "pako";
2020

2121
const isDev = import.meta.env.MODE === "development";
22-
const useCompression = true; // set to true if you want to use gzip compression for local storage
22+
const useCompression = false; // set to true if you want to use gzip compression for local storage
2323

2424
// utility functions
2525
const isString = (x) => !!x.toLowerCase;

0 commit comments

Comments
 (0)