I'm experiencing issues with hot reloading in my Qwik project. When I make changes to my code, the changes are not automatically reflected in the browser even with manually reloading the page. It only will be reflected after stop/restart with npm run dev.
Environment
Qwik version: 1.7.3
Vite version: 5.1.1
Node version: v22.4.1
OS: MacOS (M2 Max)
Steps to Reproduce
Clone the storefront-qwik-starter project
Run npm install
Run npm run dev
Make changes to any component file
Observe that changes are not reflected in the browser even with manual reload
Expected Behavior
Changes made to the code should be automatically reflected in the browser without needing to manually reload the page.
Actual Behavior
Changes are not reflected in the browser until the page is manually reloaded.
Additional Context
I'm running the dev server with vite --mode ssr --port 8080
No error messages are displayed in the terminal or browser console
[Any other relevant information about your setup or observations]
Description
I'm experiencing issues with hot reloading in my Qwik project. When I make changes to my code, the changes are not automatically reflected in the browser even with manually reloading the page. It only will be reflected after stop/restart with
npm run dev
.Environment
Steps to Reproduce
npm install
npm run dev
Expected Behavior
Changes made to the code should be automatically reflected in the browser without needing to manually reload the page.
Actual Behavior
Changes are not reflected in the browser until the page is manually reloaded.
Additional Context
vite --mode ssr --port 8080
package.json (Nothing is changed)
vite.config.ts (Nothing is changed)
I've already tried:
Any help or guidance would be greatly appreciated. Thank you!