https://github.com/yuvraj24/code-splitting-demo
https://github.com/yuvraj24/code-splitting-demo
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/yuvraj24/code-splitting-demo
- Owner: yuvraj24
- License: mit
- Created: 2023-10-21T11:23:03.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-22T12:48:07.000Z (almost 2 years ago)
- Last Synced: 2025-09-01T20:45:44.165Z (about 1 month ago)
- Language: JavaScript
- Size: 3.29 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Code-Splitting-Demo
## Normal Strategy
Bundle size on fresh initial load - 2.4 MB
![]()
![]()
## With Code Splitting Strategy
Optimized bundle size on fresh initial load - 432 KB
![]()
The rest of the js bundle is downloaded based on user demand for the respective tab's content.
![]()