I'm trying to import react-markdown, but I'm getting Error: Not supported
module.exports = import("react-markdown");
I'm trying to import react-markdown, but I'm getting Error: Not supported
module.exports = import("react-markdown");
You are exporting the react markdown library. In Next.js, you should not export libraries
You can try importing the library first and export it directly (although I don't know why you would want to do that, as you can import it in the file where you're going to use the "exported library").
import ReactMarkdown from 'react-markdown'
module.exports = ReactMarkdown