Automatic client reload not working on minimal Meteor app?

If I create a minimal meteor app using meteor create --minimal app, the client will not automatically reload if I make a change to a client source file (main.js, main.html or main.css) and save. Do I need to install a package for this to work?
(BTW: If I create a default meteor app using meteor create app, the automatic reload does work)
I am using macOS Catalina V10.15.3, Chrome V80.0.3987.106, Meteor V1.9.

Yes, the minimal meteor app does not include the hot-code-push package, or it’s dependency ddp
You can enable the feature with meteor add hot-code-push

It should work with the default app, I’ve never had problems with it :man_shrugging:

2 Likes