I need to make it so that when I make changes in LoginContainer.tsx, those changes immediately appear on the page without requiring an additional npm run build and php artisan serve.
For example, if I edit:
<LoginFormContainer
title={"Login"}
and then change the title to "My Login", I want those changes to instantly show up on the page without rebuilding.
It seems like there’s a hot reload function for this, but I haven’t figured out how it works.