Initial commit, basic web page with reagent component is working

This commit is contained in:
heyarne 2021-12-30 15:37:23 +01:00
commit 5aac0474c1
13 changed files with 2103 additions and 0 deletions

10
shadow-cljs.edn Normal file
View file

@ -0,0 +1,10 @@
;; shadow-cljs configuration
{:deps {:aliases [:cljs]}
:dev-http {8080
{:root "resources/public"
:proxy-url "http://localhost:8081"}}
:builds
{:app {:target :browser
:output-dir "resources/public/js"
:asset-path "/js"
:modules {:main {:entries [heyarne.rect-packing.core]}}}} }