Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hjzheng/babel-plugin-import-chunkname
https://github.com/hjzheng/babel-plugin-import-chunkname
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hjzheng/babel-plugin-import-chunkname
- Owner: hjzheng
- License: mit
- Created: 2019-09-12T03:42:52.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T10:03:18.000Z (almost 2 years ago)
- Last Synced: 2024-04-16T05:34:10.997Z (7 months ago)
- Language: JavaScript
- Size: 243 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# babel-plugin-import-chunkname
```
npm install @jxz/babel-plugin-import-chunkname
```use it in .babelrc
```
{
"plugins": [
"@jxz/babel-plugin-import-chunkname"
]
}
```transpile
```
import('./page/About')
```
to
```
import(/* webpackChunkName: 'About' */ './page/About')
```