This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-12-06
Channels
- # adventofcode (112)
- # announcements (6)
- # beginners (197)
- # boot (3)
- # calva (52)
- # cider (25)
- # clara (14)
- # cljdoc (6)
- # clojure (147)
- # clojure-austin (6)
- # clojure-berlin (7)
- # clojure-brasil (2)
- # clojure-europe (3)
- # clojure-india (4)
- # clojure-italy (8)
- # clojure-new-zealand (2)
- # clojure-nl (7)
- # clojure-russia (7)
- # clojure-spec (29)
- # clojure-uk (63)
- # clojurescript (103)
- # core-async (5)
- # cursive (11)
- # datomic (16)
- # devcards (1)
- # emacs (28)
- # figwheel-main (3)
- # fulcro (97)
- # graphql (4)
- # hyperfiddle (1)
- # jobs (1)
- # kaocha (3)
- # lumo (9)
- # nrepl (4)
- # off-topic (29)
- # onyx (1)
- # pathom (4)
- # pedestal (8)
- # re-frame (24)
- # reagent (1)
- # reitit (13)
- # ring-swagger (7)
- # rum (11)
- # shadow-cljs (79)
- # sql (46)
- # tools-deps (67)
- # yada (8)
figwheel is trying to reload my CSS updates from whichever client-side route i'm currently on, rather than the root resource. can anyone provide some clues? thanks!
GET net::ERR_ABORTED 404 (Not Found)
Solved: as simple as making sure the css link in index.html is using an absolute path:
<link rel="stylesheet" type="text/css" href="/css/site.css">
I have some code in my :watch-dirs
which can't compile. However, the rest of the code is okay. I've set :build-inputs
to just [:main]
which solved the immediate compilation, but when doing cljs-repl
, it tries to build the code in :watch-dirs
and fails. This doesn't halt execution, but it appears as an error when it either isn't or shouldn't be.
I'm in a context where simply removing the path from watch-dirs isn't easy, and I'm worried about other libraries which may have optional namespaces which don't work unless you add certain dependencies.
What are my options for this case?