fix: disable sqlite blob storage (#2943)

This commit is contained in:
Peng Xiao
2023-06-30 16:09:43 +08:00
committed by GitHub
parent fd0c1da608
commit 9e90242ddb

View File

@@ -100,7 +100,7 @@ export function createEmptyBlockSuiteWorkspace(
} else {
if (isBrowser) {
blobStorages.push(createIndexeddbStorage);
if (isDesktop) {
if (isDesktop && runtimeConfig.enableSQLiteProvider) {
blobStorages.push(createSQLiteStorage);
}
}