Open bradwoods opened 3 years ago
Has anyone successfully used mdx-bundler with next.js's dynamic importer? I get a Could not resolve path... error referencing the import path ('../components/hello3') in the example below.
Could not resolve path...
'../components/hello3'
const DynamicComponentWithNoSSR = dynamic( () => import('../components/hello3') )
Is this in your MDX file? or does that component import an MDX file?
A non-dynamic component is imported into an MDX file. Within that component, there is a dynamic component.
Has anyone successfully used mdx-bundler with next.js's dynamic importer? I get a
Could not resolve path...
error referencing the import path ('../components/hello3'
) in the example below.