Updates on :bundle
target support:
got the config down to:
^{:watch-dirs ["src" "test"]}
{:main my-ns.core
:target :bundle
:bundle-cmd {:none ["npx" "webpack" "--mode=development" :output-to "-o" :final-output-to]}
}
:final-output-to
is :output-to
with โ_bundleโ added before the โ.jsโ extension
you can override :final-output-to
in the figwheel-options
^{:final-output-to "out/my.bundle.js"}
the cool thing here is now figwheel can fill in the :bundle-cmd
template differently for extra-mains and auto-testing
so for the configuration above :auto-testing true
works
as well as extra-mains
this is all deployed in 0.2.6-SNAPSHOT
any feedback or thoughts here would be great
Going to be looking at an :auto-bundle :webpack
figwheel option
Is there a way I can get jetty server logs to show up when using the figwheel console?
I'm tring to debug an issue on my server side, and I'd like to use print statements in the handlers. but I cant to this when I can't see the server logs
@franklineapiyo I think the best thing to do here is to set the :log-level
key in config