do not force reload core namespace with ^:figwheel-load annotation
- forcing reloading core namespace (using ^:figwheel-load annotation) is wrong. It causes evaluation of wrong js files for platform because both ios and android core.js files are reloaded.
This commit is contained in:
parent
143fdf06d5
commit
42a9256805
|
@ -1,4 +1,4 @@
|
||||||
(ns ^:figwheel-load $PROJECT_NAME_HYPHENATED$.$PLATFORM$.core
|
(ns $PROJECT_NAME_HYPHENATED$.$PLATFORM$.core
|
||||||
(:require [reagent.core :as r :refer [atom]]
|
(:require [reagent.core :as r :refer [atom]]
|
||||||
[re-frame.core :refer [subscribe dispatch dispatch-sync]]
|
[re-frame.core :refer [subscribe dispatch dispatch-sync]]
|
||||||
[$PROJECT_NAME_HYPHENATED$.handlers]
|
[$PROJECT_NAME_HYPHENATED$.handlers]
|
||||||
|
|
Loading…
Reference in New Issue