diff --git a/.projectile b/.projectile index 938289ac25c..11176bbca59 100644 --- a/.projectile +++ b/.projectile @@ -4,5 +4,5 @@ -/node_modules/ -/.cpcache -/.shadow-cljs/ --/resources/public/js/cljs-runtime/ --/resources/public/js/main.js +-/resources/static/js/cljs-runtime/ +-/resources/static/js/main.js diff --git a/shadow-cljs.edn b/shadow-cljs.edn index f544c220ade..03f898fa5dc 100644 --- a/shadow-cljs.edn +++ b/shadow-cljs.edn @@ -7,7 +7,7 @@ {:target :browser :modules {:main {:init-fn frontend.core/init}} - :output-dir "resources/public/js" + :output-dir "resources/static/js" :asset-path "/js" :compiler-options {:infer-externs :auto @@ -15,8 +15,8 @@ ;; TODO: purge-css not working properly ;; :build-hooks [(shadow.hooks/purge-css ;; {:css-source "node_modules/tailwindcss/dist/tailwind.min.css" - ;; :js-globs ["public/js/*.js"] - ;; :public-dir "public/css"})] + ;; :js-globs ["static/js/*.js"] + ;; :public-dir "static/css"})] :devtools ;; before live-reloading any code call this function {:before-load frontend.core/stop