Voltar ao ranking
Next.js + MDX blog template with Tailwind CSS and TypeScript.
nextjsmdxreactblogverceltailwindcsspostgres
Métricas principais
Crescimento de estrelas
Estrelas
7.6k
Forks
1.5k
Crescimento semanal
—
Issues
0
2k4k6k
jan. de 2019abr. de 2020jul. de 2021out. de 2022jan. de 2024abr. de 2025jul. de 2026
Artefatosnpm
npm install next-mdx-blogREADME
next-mdx-blog
This is a blog template built with:
- Framework: Next.js
- Deployment: Vercel
- Styling: Tailwind CSS
- Analytics: Vercel Analytics
- Database (Optional): Postgres
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
);
Repositórios relacionados