-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot turn of "m" shortcut in production #5
Comments
Do you use The typical use case is to set
For production I set
Similarly, you can do the opposite, say Does that answer your questions? |
Thanks for your quick reply! Just to clarify, what we want is to avoid is that the log-viewer can be opened in the production client. We will try out your suggestion, thanks a lot. Consider this more of a clarification of the documenation (probably in the readme, rather than functionality of the library). We'll be back, thanks again |
We do get klang working in production, but we did confuse the format of edn-file. If you It's also not really clear to us whether the prod log function need to be an An example working We still have problems feeding figwheel and our cljsbuild task with different |
I see, maybe I'll make it more robust and accept a No, you don't need to export your log functions. The macro will just expand to the function call. It'll all get properly minimized. So in production this:
Will be translated into something like:
So the "undeclared var" is and issue I also had. I agree. The only real good solution is to add another source path for your production build, like Does that make sense? |
It does make sense, thank you! Regarding accepting Regarding the compile time warnings they are certainly annoying... The workaround with an extra |
Try 0.5.7. It'll automatically pluck out the symbol in case you use FWIW, The workaround with overwriting |
It's not clear at all from the documentation how to disable the "m" short cut key in production.
Is the correct way to set
:whitelist
to empty string?The text was updated successfully, but these errors were encountered: