react-code-dataset / next.js /crates /next-custom-transforms /tests /fixture /next-dynamic /no-options /output-turbo-server.js
| 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 | |
| ] | |
| } | |
| }); | |