This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-11-28
Channels
- # announcements (1)
- # beginners (205)
- # calva (30)
- # cider (5)
- # cljdoc (25)
- # cljs-dev (2)
- # clojure (119)
- # clojure-brasil (5)
- # clojure-conj (7)
- # clojure-europe (2)
- # clojure-hamburg (7)
- # clojure-italy (14)
- # clojure-nl (2)
- # clojure-russia (13)
- # clojure-spec (79)
- # clojure-uk (58)
- # clojurescript (54)
- # core-logic (2)
- # core-matrix (2)
- # cursive (40)
- # datascript (2)
- # datomic (18)
- # duct (2)
- # emacs (14)
- # figwheel (3)
- # figwheel-main (7)
- # fulcro (30)
- # funcool (1)
- # graphql (10)
- # jobs (1)
- # juxt (13)
- # lumo (1)
- # mount (1)
- # off-topic (56)
- # other-languages (2)
- # pedestal (17)
- # powderkeg (2)
- # protorepl (2)
- # re-frame (10)
- # reagent (1)
- # reitit (7)
- # ring-swagger (10)
- # schema (2)
- # shadow-cljs (70)
- # spacemacs (13)
- # specter (4)
- # sql (9)
- # tools-deps (26)
hello, does anyone know how to overwrite output-dir and output-to? my figwheel works, but currently compiles my js into resources/public/cljs-out/app
and resources/public/cljs-out/app-main.js
. I'll like it to compile to resources/public/js/out
and resources/public/js/app.js
respectively. I've already set
:output-to "resources/public/js/compiled/app.js"
:output-dir "resources/public/js/compiled/out"
in my project.clj, but I'm still getting the defaults. I'm using leiningen btwwould also appreciate it if anyone could point me to the replacement for :on-jsload
? i can't find it in the documentation and might have missed it
figured it out, just had to do this: https://figwheel.org/docs/hot_reloading.html#reload-hooks
Hi! I have ^{:css-dirs ["target/public/css"] ...} {:main ...}
in my dev.cljs.edn and the following in :profiles :dev
in project.clj: :resource-paths ^:replace ["target" "resources/dev" "resources"]
. However, my CSS files do not appear to be reloaded when I touch target/public/css/site.css
. Why could that be?