a babel plugin to convert dynamic import to static import
npm install babel-plugin-transform-dynamic-import-to-static


> a babel plugin to convert dynamic import to static import
This plugin hoists dynamic imports to static imports,
and replaces dynamic import statements with immediately
resolved promises, also won't touch static import.
``js
import A from './A'
import('./B')
`
to
`js
import A from './A'
import _default from './B'
Promise.resolve(_default)
`
See it in action in astexplorer
add as plugin to your babel configuration
`js``
{
//...
"plugins": [
// ...
"babel-plugin-transform-dynamic-import-to-static"
]
}
This plugin was made to use with react-hot-loader and react-loadable to ensure hot-reloading works
out of the box with a code-split architecture. It is meant to be used only during development.