#Preact Async Component
For SSR combine with babel plugins :
it will transform all import to require in node
{
"plugins": [
...
"babel-plugin-dynamic-import-node-sync"
...
]
}
<AsyncComponent getComponent={ () => import('./components-file') }/>