This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-04-08
Channels
- # announcements (6)
- # babashka (78)
- # beginners (84)
- # bristol-clojurians (5)
- # calva (50)
- # chlorine-clover (45)
- # cider (14)
- # clj-kondo (18)
- # cljs-dev (2)
- # clojars (2)
- # clojure (387)
- # clojure-android (3)
- # clojure-europe (6)
- # clojure-gamedev (3)
- # clojure-germany (3)
- # clojure-nl (18)
- # clojure-spec (5)
- # clojure-uk (36)
- # clojurescript (8)
- # clojurex (1)
- # conjure (1)
- # css (1)
- # cursive (32)
- # data-science (1)
- # datomic (11)
- # docker (61)
- # duct (17)
- # emacs (7)
- # figwheel-main (3)
- # fulcro (19)
- # jobs-discuss (3)
- # joker (1)
- # leiningen (23)
- # malli (11)
- # mount (6)
- # off-topic (30)
- # pathom (14)
- # pedestal (2)
- # phzr (1)
- # re-frame (11)
- # reagent (3)
- # reitit (5)
- # ring-swagger (3)
- # rum (1)
- # shadow-cljs (113)
- # slack-help (9)
- # spacemacs (16)
- # specter (4)
- # sql (14)
- # vscode (2)
- # windows (3)
- # xtdb (12)
Is there a way to suppress this warning?
[Figwheel:WARNING] A "resources/public/index.html" exists but the "resources" directory is not on the classpath
the default server will not be able to find your index.html
[Figwheel:WARNING] Target directory "target" is not on the classpath! The figwheel server will not be able to find compiled assets.
i’m serving static assets from a separate server, so don’t need figwheel’s server to do so
Also, is there a way to prevent figwheel saving the output .cljs
files alongside the output .js
files? They are both being saved in target/public/cljs-out/buildname
at the moment. target
is on the classpath for my Clojure server so it can serve up the .js
assets but I don’t want the .cljs
files on the classpath because any changes to them are detected when I use clojure.tools.namespace.repl/refresh
…