MDXBlog is a free starter template project that is easy to install and deploy. Using MDX (Markdown + JSX) and Next.js, it generates static pages that...
MDXBlog stores posts as markdown files on the local machine, eliminating the need for a round trip to a database every time I want to write or edit a...
In this article, we'll walk you through creating a content management system (CMS) for our MDX Blog, where blog posts are stored as local static files...
From the Next.js official documentation: MDX is a superset of markdown that lets you write JSX directly in your markdown files. It is a powerful way t...
Creating a static MDX blog in Next.js 14 involves several steps, including setting up your Next.js environment, creating MDX files, and configuring yo...