I am using React + Meteor.
As my project starts to grow, the rebuild time is becoming incredibly slow. Every simple change is taking about 4 seconds to rebuild, because it takes a full page reload every time.
For changes in css files, it takes also around 2 seconds to apply, but at least they do not require a full page reload.
So I started to google for a solution, and I have found a lot of different approaches, but all of them seem to have a dead end. My current status is: people were talking about react hot loading years ago, the most promising approach was:
announcement: React Hotloading in native Meteor is ready (i.e. no webpack)
But it should be a transitional solution, and it seems to be not maintained anymore.
Also I have found webpack integrations, which are all not maintaned too.
So please, could someone point me in a direction to find the actual status of react hot loading with meteor and/or how to reduce rebuild time in development?
Thank you