I’ve been placing React components in /client/components and any time I make a change, the Meteor process just displays a Client refreshed message and hot reloads the browser almost immediately.
But then I saw recommendations that since Meteor 1.3, you’re supposed to put your UI components in /imports/ui. I tried migrating over, but all changes to those components require a full application refresh – this process takes at least 5-10 more seconds and makes small adjustments to a component quite slow to adjust.
Is this the intended behavior or is there some config option I’m missing?