dominik-sfl
dominik-sfl
Would be great to see this merged!
@Arcath macOS Big Sur 11.4 I do have a `yarn.lock` file [right here](https://github.com/dominik-sfl/next-mdx-bundler/blob/main/yarn.lock).
I also added a 3rd page to the reproduction repository with this in getServerSideProps: ``` if(process.platform === "win32"){ process.env.ESBUILD_BINARY_PATH = path.join(process.cwd(), 'node_modules', 'esbuild', 'esbuild.exe') }else{ process.env.ESBUILD_BINARY_PATH = path.join(process.cwd(), 'node_modules', 'esbuild',...
@AnthonyKuang Yes, exactly. Downgrading esbuild seems to work for me though. Downgraded to 0.12.09 and it's working again.
I would also be very interested in this, since this is the only issue that keeps me from switching from `next-mdx-remote` to `mdx-bundler`, as all of my MDX components are...
Any news on this one? Have you been able to find a working solution, @arlyon ? I haven't had much success, but would be very interested in figuring this one...
Thanks for your answer @kentcdodds. What would need to happen to get the two packages to work together? I am not so familiar with ESBuild / Babel etc., so I'm...
I am getting the exact same error since 14.2. When I import components into my MDX file that use `useState` things break. ``` Warning: Invalid hook call. Hooks can only...