summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--org-roam-ui.el10
1 files changed, 9 insertions, 1 deletions
diff --git a/org-roam-ui.el b/org-roam-ui.el
index 1301627..b11e504 100644
--- a/org-roam-ui.el
+++ b/org-roam-ui.el
@@ -1,8 +1,15 @@
(require 'json)
(require 'simple-httpd)
+(defvar org-roam-ui-root
+ (concat (file-name-directory
+ (f-full (or
+ load-file-name
+ buffer-file-name)))
+ "."))
+
(setq org-roam-ui/root-dir (file-name-directory load-file-name))
-(setq org-roam-ui/app-build-dir (expand-file-name "./" org-roam-ui/root-dir))
+(setq org-roam-ui/app-build-dir (expand-file-name "./web-build/" org-roam-ui-root))
(define-minor-mode
org-roam-ui-mode
@@ -14,6 +21,7 @@
(cond
(org-roam-ui-mode
(setq-local httpd-port 35901)
+ (setq httpd-root org-roam-ui/app-build-dir)
(httpd-start))
(t
(httpd-stop))))