MDX PluginsRemark ImageConvert images into static importsUsage Convert images into imports (MDX only). import { remarkImage } from 'fumadocs-core/mdx-plugins'; export default { remarkPlugins: [remarkImage], }; Example ![Hello](./hello.png) Yields: import HelloImage from './hello.png'; <img alt="Hello" src={HelloImage} /> You need an image loader to handle image imports. In Next.js, this is already done by a Webpack/Turbopack pluginLast updated on PreviousRemark Docs GenerationNextRemark Structure