16 lines
436 B
Clojure
16 lines
436 B
Clojure
(ns ^:figwheel-no-load env.$PLATFORM$.main
|
|
(:require [$PROJECT_NAME_HYPHENATED$.$PLATFORM$.core :as core]
|
|
[figwheel.client :as figwheel :include-macros true]))
|
|
|
|
(enable-console-print!)
|
|
|
|
(figwheel/watch-and-reload
|
|
:websocket-url "ws://localhost:3449/figwheel-ws"
|
|
:heads-up-display false
|
|
;; TODO make this Rum something
|
|
:jsload-callback #(#'core/mount-app))
|
|
|
|
(core/init)
|
|
|
|
(def root-el (core/root-component-factory))
|