28 lines
485 B
Clojure
28 lines
485 B
Clojure
;; shadow-cljs configuration
|
|
{:source-paths
|
|
["src/"]
|
|
|
|
:dependencies
|
|
[[cider/cider-nrepl "0.24.0"]
|
|
[nilenso/wscljs "0.2.0"]
|
|
[org.clojure/core.match "1.1.0"]
|
|
[binaryage/oops "0.7.2"]
|
|
[reagent "0.10.0"]
|
|
[cljsjs/react "17.0.2-0"]
|
|
[cljsjs/react-dom "17.0.2-0"]
|
|
[cljsx "1.0.0"]]
|
|
|
|
:dev-http
|
|
{8020 "public"}
|
|
|
|
:builds
|
|
{:app
|
|
{:target :browser
|
|
:output-dir "public/js"
|
|
:asset-path "/js"
|
|
|
|
:modules
|
|
{:main ; becomes public/js/main.js
|
|
{:init-fn main/init}}}}}
|
|
|