Replies: 2 comments
-
|
The idea from Parcel Lazy mode In development, it can be frustrating to wait for your entire app to build before the dev server starts up. This is especially true when working on large apps with many pages. If you’re only working on one feature, you shouldn’t need to wait for all of the others to build unless you navigate to them. Would be nice to have the "lazy" way to defer building files until they are requested in the browser, which can significantly reduce development build times. The server starts quickly, and when you navigate to a page for the first time, plugin builds only the files necessary for that page. When you navigate to another page, that page will be built on demand. If you navigate back to a page that was previously built, it loads instantly. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for the suggestion! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Lazy mode feature to reduce development build times.
For reference: https://parceljs.org/features/development/#lazy-mode
Beta Was this translation helpful? Give feedback.
All reactions