File size: 325 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
import dynamic from 'next/dynamic';
import somethingElse from 'something-else';
const DynamicComponent = dynamic(()=>import('../components/hello'), {
loadableGenerated: {
modules: [
"src/some-file.js -> " + "../components/hello"
]
}
});
somethingElse.dynamic('should not be transformed');
|