File size: 623 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | import { __turbopack_module_id__ as id } from "../components/hello" with {
"turbopack-transition": "next-client-dynamic",
"turbopack-chunking-type": "none"
};
import dynamic from 'next/dynamic';
const DynamicComponent = dynamic(()=>import(`../components/hello`, {
with: {
"turbopack-transition": "next-dynamic"
}
}), {
loadableGenerated: {
modules: [
id
]
}
});
const componentRoot = '@/some-components';
const Component1 = dynamic(()=>import(`${componentRoot}/component1`));
const Component2 = dynamic(()=>import(`${componentRoot}/component2`));
|