https://github.com/netlify-templates/next-platform-starter
Modern starter based on Next.js 16 (App Router), Tailwind, and Netlify core primitives
https://github.com/netlify-templates/next-platform-starter
nextjs nextjs-template tailwindcss tailwindcss-v4 template
Last synced: 4 months ago
JSON representation
Modern starter based on Next.js 16 (App Router), Tailwind, and Netlify core primitives
- Host: GitHub
- URL: https://github.com/netlify-templates/next-platform-starter
- Owner: netlify-templates
- Created: 2024-03-20T18:26:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2026-02-23T16:52:12.000Z (4 months ago)
- Last Synced: 2026-02-23T22:49:02.282Z (4 months ago)
- Topics: nextjs, nextjs-template, tailwindcss, tailwindcss-v4, template
- Language: JavaScript
- Homepage: https://nextjs-platform-starter.netlify.app/
- Size: 3.06 MB
- Stars: 122
- Watchers: 15
- Forks: 283
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Next.js on Netlify Platform Starter
[Live Demo](https://nextjs-platform-starter.netlify.app/)
A modern starter based on Next.js 16 (App Router), Tailwind, and [Netlify Core Primitives](https://docs.netlify.com/core/overview/#develop) (Edge Functions, Image CDN, Blob Store).
In this site, Netlify Core Primitives are used both implictly for running Next.js features (e.g. Route Handlers, image optimization via `next/image`, and more) and also explicitly by the user code.
Implicit usage means you're using any Next.js functionality and everything "just works" when deployed - all the plumbing is done for you. Explicit usage is framework-agnostic and typically provides more features than what Next.js exposes.
## Deploying to Netlify
Click the button below to deploy this template to your Netlify account.
[](https://app.netlify.com/start/deploy?repository=https://github.com/netlify-templates/next-platform-starter)
## Developing Locally
1. Clone this repository, then run `npm install` in its root directory.
2. For the starter to have full functionality locally (e.g. edge functions, blob store), please ensure you have an up-to-date version of Netlify CLI. Run:
```
npm install netlify-cli@latest -g
```
3. Link your local repository to the deployed Netlify site. This will ensure you're using the same runtime version for both local development and your deployed site.
```
netlify link
```
4. Then, run the Next.js development server via Netlify CLI:
```
netlify dev
```
If your browser doesn't navigate to the site automatically, visit [localhost:8888](http://localhost:8888).
## Resources
- Check out the [Next.js on Netlify docs](https://docs.netlify.com/frameworks/next-js/overview/)