A template with Next.js 15 app dir, Velite, Tailwind CSS and dark mode.
package.json:
{
"scripts": {
"dev:content": "velite --watch",
"build:content": "velite --clean",
"dev:next": "next dev",
"build:next": "next build",
"dev": "run-p dev:*",
"build": "run-s build:*",
"start": "next start"
}
}