24 lines
872 B
Clojure
24 lines
872 B
Clojure
(ns ^:figwheel-no-load env.$PLATFORM$.main
|
|
(:require [reagent.core :as r]
|
|
[$PROJECT_NAME_HYPHENATED$.$PLATFORM$.core :as core]
|
|
[figwheel.client :as fw]
|
|
[env.config :as conf]))
|
|
|
|
(enable-console-print!)
|
|
|
|
(assert (exists? core/init) "Fatal Error - Your core.cljs file doesn't define an 'init' function!!! - Perhaps there was a compilation failure?")
|
|
(assert (exists? core/app-root) "Fatal Error - Your core.cljs file doesn't define an 'app-root' function!!! - Perhaps there was a compilation failure?")
|
|
|
|
(def cnt (r/atom 0))
|
|
(defn reloader [] @cnt [core/app-root])
|
|
|
|
;; Do not delete, root-el is used by the figwheel-bridge.js
|
|
(def root-el (r/as-element [reloader]))
|
|
|
|
(fw/start {
|
|
:websocket-url (:$PLATFORM$ conf/figwheel-urls)
|
|
:heads-up-display false
|
|
:jsload-callback #(swap! cnt inc)})
|
|
|
|
(core/init)
|