how to prevent Hot Module Reloading #12539
-
I have an Interactive web application, where user can upload face and to fun stuff but due to HMR reloading it reloads stylesheet within 30 seconds and whole user data losted. I am trying pretty hard to do this but not getting way to fix this |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
Could you elaborate more? Is the page reloading when it shouldn't? Did you edit styles? I'd like to understand the problem more to provide advice. |
Beta Was this translation helpful? Give feedback.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
Looks like you are running your server in dev mode ( |
Beta Was this translation helpful? Give feedback.
Looks like you are running your server in dev mode (
next dev
). For production you should build the project (next build
) and start the server withnext start
.