Skip to content

Commit 0a72a74

Browse files
committed
fix: default cache to false
1 parent ef134f2 commit 0a72a74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function init() {
8989
let cache;
9090
if (window.CoCreateConfig && window.CoCreateConfig.cache)
9191
cache = window.CoCreateConfig.cache;
92-
else cache = localStorage.getItem("cache") || "true";
92+
else cache = localStorage.getItem("cache") || "false";
9393

9494
localStorage.setItem("cache", cache);
9595
workerPath += `?cache=${cache}`;

0 commit comments

Comments
 (0)