Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试导入react-markdown,但我得到了Error: Not supported
Error: Not supported
module.exports = import("react-markdown");
您正在导出反应降价库。在 Next.js 中,您不应该导出库
您可以尝试先导入库并直接导出它(虽然我不知道您为什么要这样做,因为您可以将它导入到您要使用“导出库”的文件中)。
import ReactMarkdown from 'react-markdown' module.exports = ReactMarkdown