fix: electron cannot be started in Windows (#2784)

(cherry picked from commit 7eaff644e3)
This commit is contained in:
JimmFly
2023-06-15 14:16:27 +08:00
committed by himself65
parent 264629c6b2
commit 1e32c34b49
5 changed files with 8 additions and 5 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ export function registerPlugin() {
'./bookmark-block/index.mjs'
);
logger.info('bookmark plugin path:', bookmarkPluginPath);
import(bookmarkPluginPath);
import('file://' + bookmarkPluginPath);
let dispose: () => void = () => {
// noop
};
@@ -34,7 +34,7 @@ import('@toeverything/plugin-infra/manager')
console.log('import bookmark plugin', bookmarkPluginPath);
import(bookmarkPluginPath).catch(console.log);
import('file://' + bookmarkPluginPath).catch(console.log);
rootStore.sub(affinePluginsAtom, () => {
const plugins = rootStore.get(affinePluginsAtom);
Object.values(plugins).forEach(plugin => {