Guillaume Catel
Results
1
comments of
Guillaume Catel
The HMR must want to rerun the listen function. Did you enclose `app.listen(port)` like this? ```js if (process.env.NODE_ENV === 'production') { app.listen(port) } // or: if (import.meta.env.PROD) { app.listen(port); }...