shadow-cljs.edn 589 B

1234567891011121314151617181920212223242526272829
  1. {:nrepl {:port 8777}
  2. :source-paths ["src" "test"]
  3. :dependencies
  4. [[reagent "1.1.1"]
  5. [re-frame "1.3.0"]
  6. [re-com "2.13.2"]
  7. [binaryage/devtools "1.0.6"]]
  8. :dev-http
  9. {8280 "resources/public"
  10. 8290 "target/browser-test"}
  11. :builds
  12. {:app
  13. {:target :browser
  14. :output-dir "resources/public/js/compiled"
  15. :asset-path "/js/compiled"
  16. :modules
  17. {:app {:init-fn lineup.core/init}}
  18. :devtools
  19. {:preloads []}
  20. :dev
  21. {:compiler-options
  22. {:closure-defines
  23. {re-com.config/root-url-for-compiler-output "http://localhost:8290/js/compiled/app/cljs-runtime/"}}}}}}