From 1abc086b290506ec7d1c2b89369c3568f1dbc784 Mon Sep 17 00:00:00 2001 From: KKlochko Date: Mon, 1 Apr 2024 20:56:32 +0300 Subject: [PATCH] Update the shadow-cljs config to move index.js to the project's root. --- shadow-cljs.edn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shadow-cljs.edn b/shadow-cljs.edn index ef7c500..405c387 100644 --- a/shadow-cljs.edn +++ b/shadow-cljs.edn @@ -9,7 +9,7 @@ :builds {:node {:target :node-script - :output-to "public/index.js" + :output-to "index.js" :main blog.core/main :init-fn blog.core/main}}}