mirror of
https://github.com/logseq/logseq.git
synced 2026-05-02 09:56:31 +00:00
15 lines
288 B
Clojure
15 lines
288 B
Clojure
(ns frontend.config)
|
|
|
|
(defonce tasks-org "tasks.org")
|
|
(defonce hidden-file ".hidden")
|
|
(defonce dev? ^boolean goog.DEBUG)
|
|
(def website
|
|
(if dev?
|
|
"http://localhost:3000"
|
|
"https://logseq.com"))
|
|
|
|
(def api
|
|
(if dev?
|
|
"http://localhost:3000/api/v1/"
|
|
(str website "/api/v1/")))
|