Excuse me. I have a question ? Can I use mdx-bundler in react (without using nextjs, remix,...). I store mdx compile string in mongodb then use mdx-bundler on browser to decompile it ?
I mean: 1 server compile mdx file -> store in in database (use monorepo to share component between server and UI). Then at front-end I fetch it from databse -> decompile -> show to UI
@Arcath yeah, use esbuild & mdx-bundler in server. Because I use react CSR so I put component as global in mdx-bundler. This leads me to not get the power out of mdx-bundler . But I will use react SSR in the future.
Excuse me. I have a question ? Can I use mdx-bundler in react (without using nextjs, remix,...). I store mdx compile string in mongodb then use mdx-bundler on browser to decompile it ? I mean: 1 server compile mdx file -> store in in database (use monorepo to share component between server and UI). Then at front-end I fetch it from databse -> decompile -> show to UI