Patch Changes
-
🐞🩹 fix behaviour of checkOrigin: "lax-proto" in createQwikCity (by @asaharan in #7865)
-
🛠 Add check-client command to verify bundle freshness (by @JerryWu1234 in #7517)
-
✨ All qwik packages are now marked as side effect free in their package.json. This should remove a few unecessary empty imports added by rollup and then not tree-shaken like
import "./preloader.js"
. (by @maiieul in #7908) -
✨ SPA Link navigation now preloads the next route bundles on click with maximum probability, speeding up SPA navigation. (by @maiieul in #7849)
-
🐞🩹 Your service-worker.js won't be unregistered anymore if you added custom logic to it. (by @maiieul in #7872)
Note: Qwik 1.14.0 and above now use
<link rel="modulepreload">
by default. If you didn't add custom service-worker logic, you should remove your service-worker.ts file(s) for theServiceWorkerRegister
Component to actually unregister the service-worker.js and delete its related cache. Make sure to keep theServiceWorkerRegister
Component in your app (without any service-worker.ts file) as long as you want to unregister the service-worker.js for your users.