-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support MD and MDX #261
Comments
MDX files are normally pre-rendered to HTML at build-time and therefore pages using them work fine. You would of-course run into a problem when you want to try and do things at run-time for two reasons;
I'm not sure there is really anything to do here. |
I believe the file system is not a problem when you (re)write your app to use i.e. remote mdx eval is probably needed to render the jsx. It might be worth looking for libs embedding react for rendering? |
One very common type of Next.js applications are applications that render content base on MD or MDX files.
The Next.js docs have a whole page dedicated to this.
We should investigate and make sure that we can support this patten, in particular it would be good to make sure that we can support the Next.js official MDX solution:
@next/mdx
.We should also make sure to support Remote MDX is possible.
The text was updated successfully, but these errors were encountered: