File size: 496 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import { __turbopack_module_id__ as id } from "../text-dynamic-no-ssr-server" with {
"turbopack-transition": "next-client-dynamic",
"turbopack-chunking-type": "none"
};
import dynamic from 'next/dynamic';
export const NextDynamicNoSSRServerComponent = dynamic(()=>import('../text-dynamic-no-ssr-server', {
with: {
"turbopack-transition": "next-dynamic"
}
}), {
loadableGenerated: {
modules: [
id
]
},
ssr: false
});
|