wasn't the documentation helpful? https://github.com/bhauman/lein-figwheel/wiki/Configuration-Options
>:ring-handler hello_world.server/handler: If you want to embed a ring handler into the figwheel http-kit server; this is for simple ring servers, if this doesn't work for you just run your own server. Default: Off
Is there a way to just simply allow figwheel to inject code with warnings?
I'm having a ton of issues with false-positives
nvm, found it :load-warninged-code
would be great to have a filter for what warnings will and will not cause compilation to fail. For example, I don't care if a non-public function throws a warning (which I think might be a bug in the latest cljs compiler, the function i'm calling is public)
overall, i'm happy this configuration value exists 😉
hi all... Figwheel is greeting me with
Figwheel Server: Resource not found
Keep on figwheelin'
My app was there just an instant ago...
How do I debug this? there is no output in figwheel_server.log
and lein hangs at:
Prompt will show when Figwheel connects to your application
[Rebel readline] Type :repl/help for online help info
^^ which is just before where it gives a prompt. So I have made some programming error, i guess, but I can't see any logging anywhere
At that point, the only way out is a ^C
and a restart, which I have seen solving the issue sometimes (as in my app appears again, there is no 404). But not this time 😉
Found my programming error. Still would love for figwheel to give me feedback somehow. So if anyone knows how to turn on debug-logging somehow...