This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-11-29
Channels
- # announcements (1)
- # babashka (1)
- # beginners (46)
- # calva (2)
- # cider (6)
- # circleci (10)
- # clj-kondo (2)
- # cljsrn (2)
- # clojure (30)
- # clojure-dev (6)
- # clojuredesign-podcast (8)
- # clojurescript (28)
- # conjure (1)
- # core-logic (2)
- # core-matrix (2)
- # cryogen (16)
- # figwheel-main (2)
- # graalvm (4)
- # jobs (1)
- # malli (15)
- # minimallist (1)
- # off-topic (70)
- # pathom (4)
- # reagent (3)
- # releases (2)
- # remote-jobs (8)
- # rewrite-clj (3)
- # shadow-cljs (4)
- # tools-deps (29)
- # uncomplicate (3)
Hi, is there any common practice to include the hashes from https://shadow-cljs.github.io/docs/UsersGuide.html#NameHashing into the index.html
file?
The User Guide states:
> The https://shadow-cljs.github.io/docs/UsersGuide.html#BrowserManifest can help with that.
How is the Output Manifest commonly used to do this task?
if you just have a static html file you can use this https://github.com/thheller/shadow-cljs/blob/16727382e683bb9449a07068158e01f9f16827ea/shadow-cljs.edn#L146-L149
copies the index.src.html
and modifies the <script src="/js/main.js">
(or whatever your modules and paths are)
ah perfect, thanks!