fix: disable sqlite blob storage (#2943)

This commit is contained in:
Peng Xiao
2023-06-30 16:09:43 +08:00
committed by Alex Yang
parent 536bf01dd9
commit 5e4cd0f81d

View File

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