preact-async-component
v1.0.0
Published
For SSR combine with babel plugins : - https://www.npmjs.com/package/babel-plugin-dynamic-import-node-sync
Readme
#Preact Async Component
For SSR combine with babel plugins :
- https://www.npmjs.com/package/babel-plugin-dynamic-import-node-sync
it will transform all import to require in node
Babel Config
{
"plugins": [
...
"babel-plugin-dynamic-import-node-sync"
...
]
}
Demo
<AsyncComponent getComponent={ () => import('./components-file') }/>