react-code-dataset
/
next.js
/crates
/next-custom-transforms
/tests
/fixture
/next-dynamic
/no-options
/output-prod.js
| import dynamic from 'next/dynamic'; | |
| const DynamicComponent = dynamic(()=>import('../components/hello') | |
| , { | |
| loadableGenerated: { | |
| webpack: ()=>[ | |
| require.resolveWeak("../components/hello") | |
| ] | |
| } | |
| }); | |