work in progress.

This commit is contained in:
Bryce Covert
2020-12-21 10:52:46 -08:00
parent 48b48e9137
commit a9b406b555
3 changed files with 16 additions and 5 deletions

View File

@@ -2,10 +2,15 @@
:target :bundle
:output-to "resources/public/js/compiled/app.js"
:output-dir "resources/public/js/compiled/"
:source-map "resources/public/js/compiled/app.js.map"
:pretty-print true
:pseudo-names true
:infer-externs true
:bundle-cmd {:none ["npx" "webpack" "--mode=development" :output-to
:closure-defines {cljs.core/*global* "window"}
:bundle-cmd {:none ["npx" "webpack" "--mode=production" :output-to
"--output-path" :final-output-dir
"--output-filename" :final-output-filename]
:default ["npx" "webpack" "--mode=production" :output-to
:default ["npx" "webpack" "--mode=development" :output-to
"--output-path" :final-output-dir
"--output-filename" :final-output-filename]}}