We have a robust app built out with over 1500 components which is starting to bog down. Is there a way to do a lazy load for components on certain pages so they don't all load up at app start? I've seen a recommendation to split the app into multi-apps that load within a frame but we'd prefer not to go down that path. Any other potential suggestions to split up component load times?
Hi @Justin_Fuqua,
From our doc on best practices
" The more components and queries an app contains, the more work you need to do to maintain them. Break up larger apps that perform several distinct but separate functions into multiple apps that can focus on specific needs.
You can link to other apps using components like Navigation or Button so that users can access other apps when needed. You can also use modules to create larger apps that combine separately developed apps together, streamlining maintenance.
You can also share data between apps using URL query strings or localStorage
."
A great idea would be to try Multipage, which is currently in Beta:
1 Like