Fast Refresh had to perform a full reload loop
Unanswered
Western yellowjacket posted this in #help-forum
Western yellowjacketOP
I have an application at
In the image, you can see the router receives the request, and rewrites to the correct app depending on the path. (for example,
When rewriting to an application using that is still using
When rewriting to an application using
Every app is using NextJS v14.04 but some apps are still using
This only happens in apps using
localhost:8080 that receives every request and rewrites to the correct app. This application is called router.In the image, you can see the router receives the request, and rewrites to the correct app depending on the path. (for example,
localhost:3001/login)When rewriting to an application using that is still using
pages folder, the router app "throws" Fast Refresh had to perform a full reload. in a loop.When rewriting to an application using
app folder, the problem disappears. Every app is using NextJS v14.04 but some apps are still using
pages folder and others are using the new app folder.This only happens in apps using
pages folder2 Replies
Western yellowjacketOP
Actually, in those apps that work (
But if I go directly to
app folder) fast refresh doesn't work, I have to manually press F5.But if I go directly to
localhost:3001/login instead of localhost:8080/login (that rewrites to localhost:3001) fast refresh works. So this is a problem with rewrites?Western yellowjacketOP
as you can see, we are in
login app, but for some reason, the router app full reloads... but if access login app directly, this doesn't happen