-
-
Notifications
You must be signed in to change notification settings - Fork 208
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
Figwheel always reloads dev.cljs #92
Comments
If you want to avoid compilation it's fine if you use |
Thanks for the explanation! |
It's also important to note that adding :recompile-dependents false to your build config disables this behavior. I'm starting to think that this should be the default for figwheel builds. |
I'm setting up a simple figwheel project using
lein new figwheel fig1
, then doing alein figwheel
.This starts the app and I can change something in core.cljs and the app gets reloaded. I just don't understand why it also reloads dev.cljs:
I have this same problem with a
lein new reagent
project I'm trying to set up. In that case it tries to rebuild the Weasel connection each time I change something in core.cljs. The workaround I found is to add^:figwheel-no-load
to dev.cljs.Am I doing something wrong?
The text was updated successfully, but these errors were encountered: