Home
Softono

Next Mdx Blog

Open source TypeScript
7.6K
Stars
1.4K
Forks
1
Issues
46
Watchers
3 months
Last Commit

 About Next Mdx Blog

Next.js + MDX blog template with Tailwind CSS and TypeScript.

Platforms

Web Self-hosted

Languages

TypeScript

Need Help Installing Next Mdx Blog?

We provide expert installation service for this software. Our team will install, configure, and secure Next Mdx Blog on your server. plans start at just $30.

Next Mdx Blog

View on GitHub

Deploy with Vercel

next-mdx-blog

This is a blog template built with:

Running Locally

This application requires Node.js v18.17+.

git clone https://github.com/leerob/next-mdx-blog.git
cd next-mdx-blog
pnpm install
pnpm dev

Database (Optional)

Create a .env.local file with your POSTGRES_URL environment variable to store redirects.

CREATE TABLE redirects (
  id SERIAL PRIMARY KEY,
  source VARCHAR(255) NOT NULL,
  destination VARCHAR(255) NOT NULL,
  permanent BOOLEAN NOT NULL
);