perf: improve initial loading times#2414
Merged
JammingBen merged 3 commits intomainfrom Apr 27, 2026
Merged
Conversation
Optimizes the chunk sizes by splitting the large chunks into smaller ones. This lays the groundwork for better initial page loading times, especially with slower network connections.
1f2c217 to
aee07b7
Compare
JammingBen
commented
Apr 21, 2026
| ), | ||
| hasInput: false, | ||
| onConfirm: () => loadingService.addTask(() => emptyTrashBin({ space: resources[0] })) | ||
| onConfirm: () => emptyTrashBin({ space: resources[0] }) |
Member
Author
There was a problem hiding this comment.
loadingService is already active for modals. This failed in e2e tests (which is good, I just don't know why now).
15d9fde to
7f7ae0f
Compare
Parallelize some requests during bootstraps that were loaded synchronously before. This speeds up initial loading times. Affected requests: - webfinger discovery - design system js assets - capabilities - user permissions - app provider mime types
7f7ae0f to
f7ca678
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR mainly does two things to improve loading times, especially on slower network connections:
Tests on my local machine showed reduced loading times with throttled network:
closes #2332
closes #2335