mirror of
https://github.com/status-im/re-natal.git
synced 2025-01-15 07:04:23 +00:00
577f7c6954
- Genymotion simulator should use 10.0.3.2 instead of localhost - Stock android emulator should use 10.0.2.2 instead of localhost
16 lines
375 B
Clojure
16 lines
375 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://$DEV_HOST$:3449/figwheel-ws"
|
|
:heads-up-display false
|
|
:jsload-callback core/mount-root)
|
|
|
|
(core/init)
|
|
(core/mount-root)
|
|
|
|
|