https://github.com/aem/chunk-name-bug-repro
https://github.com/aem/chunk-name-bug-repro
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/aem/chunk-name-bug-repro
- Owner: aem
- Created: 2018-09-13T14:57:37.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-13T15:03:08.000Z (almost 8 years ago)
- Last Synced: 2024-10-04T11:21:39.122Z (almost 2 years ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# webpack chunk name bug demo
## steps to repro
1. `npm install`
2. `npm run build`
## expected chunks
- main.js
- chunk-a.js (containing route a and route b)
- chunk-b.js
- chunk-c.js
## actual chunks
- main.js
- chunk-a.js (containing route a and route b)
- chunk-a-js.js (containing route a)
- chunk-b.js
- chunk-c.js