Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aem/chunk-name-bug-repro
https://github.com/aem/chunk-name-bug-repro
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/aem/chunk-name-bug-repro
- Owner: aem
- Created: 2018-09-13T14:57:37.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-13T15:03:08.000Z (over 6 years ago)
- Last Synced: 2024-10-04T11:21:39.122Z (3 months 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