/blog

My personal blog

Primary LanguageMDX

My blog

The repository contains the content and code behind my blog.

Tech stack

The blog is a Next.js application. The content is written in MDX in the content directory.

The content is first indexed by the content-indexer. This prepares the indexes that the Next.js application later uses to quickly serve the content.

Development

Install the dependencies and start the development server:

npm install
npm run create-indexes
npm run dev

Modifying the content will not re-create the indexes or trigger live-reload automatically. If you want these features, run:

npm run dev:content