mirror of
https://github.com/logseq/logseq.git
synced 2026-06-01 19:01:22 +00:00
fix(electron): correct dev entry
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
["electron" :refer [BrowserWindow app protocol ipcMain] :as electron]))
|
||||
|
||||
(def ROOT_PATH (path/join js/__dirname ".."))
|
||||
(def MAIN_WINDOW_ENTRY (str "file://" (path/join js/__dirname (if dev? "electron.html" "index.html"))))
|
||||
(def MAIN_WINDOW_ENTRY (str "file://" (path/join js/__dirname (if dev? "dev.html" "index.html"))))
|
||||
|
||||
(defonce *setup-fn (volatile! nil))
|
||||
(defonce *teardown-fn (volatile! nil))
|
||||
|
||||
Reference in New Issue
Block a user