2015-11-29 21:10:01 +00:00
|
|
|
(ns ^:figwheel-no-load env.$PLATFORM$.main
|
2015-12-06 19:22:53 +00:00
|
|
|
(:require [$PROJECT_NAME_HYPHENATED$.$PLATFORM$.core :as core]
|
|
|
|
[figwheel.client :as figwheel :include-macros true]))
|
2015-11-27 22:57:14 +00:00
|
|
|
|
|
|
|
(enable-console-print!)
|
|
|
|
|
2015-12-06 19:22:53 +00:00
|
|
|
(figwheel/watch-and-reload
|
|
|
|
:websocket-url "ws://$DEV_HOST$:3449/figwheel-ws"
|
|
|
|
:heads-up-display false
|
|
|
|
:jsload-callback core/mount-root)
|
|
|
|
|
2015-11-27 22:57:14 +00:00
|
|
|
(core/init)
|
2015-12-05 22:53:27 +00:00
|
|
|
(core/mount-root)
|
2015-11-27 22:57:14 +00:00
|
|
|
|
|
|
|
|