Bundle lazy load

Is it possible to bundle the lazy loads? So when I hit any route under /admin - all of the other admin route components also gets lazy loaded?
No description
7 Replies
Brendonovich
Brendonovich•2y ago
lazy adds a .preload function to its result, maybe you could call them in the /admin load function?
andahendriksen
andahendriksenOP•2y ago
What do you mean by call them in the /admin load function?
Brendonovich
Brendonovich•2y ago
add a load function to /admin route and call them in there
Brendonovich
Brendonovich•2y ago
andahendriksen
andahendriksenOP•2y ago
I've tried to do it like this, but it doesn't seem to work. Maybe that's not what you meant?
No description
Brendonovich
Brendonovich•2y ago
You're halfway there, put the lazy imports back where you had them and call preload on each one you want preloaded
andahendriksen
andahendriksenOP•2y ago
Ah yes now it works! Thanks for the help 😎
No description

Did you find this page helpful?