Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 5.03 KB

README.md

File metadata and controls

55 lines (36 loc) · 5.03 KB

NextJS 13 Starter Template, Tailwind CSS 3 and TypeScript

🚀 Next.js 13 App Directory, Tailwind CSS and TypeScript ⚡️ Made with developer experience first: Next.js, TypeScript, ESLint, Prettier, Husky, Lint-Staged, VSCode, PostCSS, Tailwind CSS.

Clone this project and use it to create your own Next.js project.

Features

Developer experience first:

  • 🔥 Next.js for Static Site Generator
  • 🎨 Integrate with Tailwind CSS
  • 🎉 Type checking TypeScript
  • ✅ Strict Mode for TypeScript and React 18
  • ✏️ Linter with ESLint
  • 🛠 Code Formatter with Prettier
  • 🦊 Husky for Git Hooks
  • 🚫 Lint-staged for running linters on Git staged files

Getting started

Run the following command on your local environment:

git clone https://github.com/muthaiyanmani/nextjs-starter-template.git my-project-name
cd my-project-name
npm install

Then, you can run locally in development mode with live reload:

npm run dev

Open http://localhost:3000 with your favorite browser to see your project.

Deploy to production

You can see the results locally in production mode with:

$ npm run build
$ npm run start