elm-spa
elm-spa copied to clipboard
Option to disable debugger when using watch/server
I have some large data in my Model which is causing a stack overflow in the elm debugger. I'm not actually using the debugger so I'd like to disable it.
I wouldn't mind tackling and I see a couple of options.
- Command line parameter to watch/server e.g.
elm-spa server --no-debug
- A json file for configuring elm-spa elm-spa.json
{
development: {
debugger: false
}
}
@ryannhg would you be interested in having this option and if so which approach would you prefer?