mirror of
https://github.com/metosin/reitit.git
synced 2025-12-16 16:01:11 +00:00
10 lines
203 B
Clojure
10 lines
203 B
Clojure
|
|
(require
|
||
|
|
'[cljs.repl :as repl]
|
||
|
|
'[cljs.repl.node :as node])
|
||
|
|
|
||
|
|
(repl/repl* (node/repl-env)
|
||
|
|
{:output-dir "target/generated/js/out"
|
||
|
|
:optimizations :none
|
||
|
|
:cache-analysis true
|
||
|
|
:source-map true})
|