From f7fd5e71d6b2ba12bf4217fa2c86db5d425d5070 Mon Sep 17 00:00:00 2001 From: Audrius Molis Date: Mon, 5 Feb 2018 20:12:46 +0200 Subject: [PATCH] Allow app reloading in development mode [FIX #3118] Signed-off-by: Andrey Shovkoplyas --- project.clj | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/project.clj b/project.clj index 0ba7bd11083..5b87055f4a5 100644 --- a/project.clj +++ b/project.clj @@ -54,9 +54,13 @@ :cljsbuild {:builds {:ios {:source-paths ["react-native/src" "src" "env/dev"] + :compiler {:output-to "target/ios/app.js" + :output-dir "target/ios"} :figwheel true} :android {:source-paths ["react-native/src" "src" "env/dev"] + :compiler {:output-to "target/android/app.js" + :output-dir "target/android"} :figwheel true}}}}] :test {:dependencies [[day8.re-frame/test "0.1.5"]] :plugins [[lein-doo "0.1.7"]]