re-natal/resources/require_img_dev.clj
Artur Girenko a4a8d09fe7 Support loading of static images using approach introduced in RN 0.14
- Used macro to generate js/require for prod compilation and {:uri http://localhost:8080/*} for dev builds.
- Rearranged sources to be able to support dev and prod profiles
2015-11-28 16:20:39 +01:00

7 lines
148 B
Clojure

(ns env.require-img)
(defmacro require-img
"Load image from local packager service"
[src]
{:uri (str "http://localhost:8081/" src)})