https://github.com/jayvirrathi/react-code-splitting
React Code Splitting
https://github.com/jayvirrathi/react-code-splitting
code-splitting react
Last synced: 8 months ago
JSON representation
React Code Splitting
- Host: GitHub
- URL: https://github.com/jayvirrathi/react-code-splitting
- Owner: Jayvirrathi
- Created: 2021-09-11T08:53:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-11T09:33:28.000Z (over 4 years ago)
- Last Synced: 2025-02-27T16:52:50.208Z (about 1 year ago)
- Topics: code-splitting, react
- Language: JavaScript
- Homepage:
- Size: 212 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Code Splitting App
### Code Splitting
```js
// import Chart from "./pages/Chart/Chart";
```
```
yarn build
yarn analyze
```
### Without Code Splitting
```js
// const Chart = lazy(() => import("./pages/Chart/Chart"));
```
```
yarn build
yarn analyze
```