perf: convert app store imports to lazy getters for faster local dev #26444
+32
−28
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What does this PR do?
This PR addresses issue #23104 by converting eager import() calls in generated app store files to lazy getter functions.
Problem
When any page loaded that imported the app store maps, all 110+ app modules would be compiled by Next.js even if only 1-2 were needed. This caused 10-12s initial page load times in local development.
Solution
Convert eager imports to lazy getter functions that only trigger the import when accessed.
Changes
Expected Impact
80%+ reduction in local dev page load times (target: < 2s, down from 10-12s).
How should this be tested?
Fixes #23104