Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Minimalist boilerplate for Next.js with Tailwind CSS
Nevel is a minimalist Next.js boilerplate created by natainditama that combines Tailwind CSS, TypeScript, ESLint, Prettier, and next-sitemap to produce a static-site-ready project structure.
Nevel is a pre-configured Next.js starter template that outputs a static site built with Tailwind CSS and TypeScript. It takes a standard Next.js project and adds linters, formatters, and SEO helpers, so developers can clone it and immediately begin writing pages. The project is maintained under the MIT License on GitHub by natainditama.
Nevel includes a pre-configured development environment for building static sites. Its core features are:
Nevel is aimed at developers who want a minimal, ready-to-use Next.js foundation. It suits the following roles:
With Nevel, you can quickly turn a fresh Next.js project into a deployable static site. Typical use cases include:
Nevel is installed by cloning the GitHub repository and then running yarn install to fetch dependencies. The development server starts with yarn run dev, and running a production build via Next.js executes the next-sitemap plugin to generate sitemap.xml and robots.txt. The README requires NEXT_PUBLIC_SITE_URL to be set before deployment.
The most common questions about Nevel concern its setup and configuration.
Yes. Nevel is open source under the MIT License, so it can be used, modified, and redistributed without charge.
Nevel needs the NEXT_PUBLIC_SITE_URL environment variable set to your site's public URL. This value is used by next-sitemap when generating sitemap.xml and robots.txt.
Yes. ESLint and Prettier are both pre-configured, so you can run the normal Next.js lint commands and keep formatting consistent with a single command.
After cloning the repository, navigate into the directory, run yarn install to install dependencies, and then yarn run dev to start the development server. Node.js and Yarn are required prerequisites.
