Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cubxity/next-typescript-tailwindcss-template
:zap: Simplistic Next.js + TypeScript + Tailwind CSS website template.
https://github.com/cubxity/next-typescript-tailwindcss-template
eslint nextjs prettier ssg ssr svgr tailwindcss typescript
Last synced: about 6 hours ago
JSON representation
:zap: Simplistic Next.js + TypeScript + Tailwind CSS website template.
- Host: GitHub
- URL: https://github.com/cubxity/next-typescript-tailwindcss-template
- Owner: Cubxity
- License: mit
- Created: 2022-06-28T10:29:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-02T17:23:20.000Z (almost 2 years ago)
- Last Synced: 2024-04-17T19:12:38.399Z (7 months ago)
- Topics: eslint, nextjs, prettier, ssg, ssr, svgr, tailwindcss, typescript
- Language: JavaScript
- Homepage:
- Size: 102 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
next-typescript-tailwindcss-template
![](.github/assets/banner.svg)
⚡
Simplistic [Next.js](https://nextjs.org) + [TypeScript](https://www.typescriptlang.org/) + [Tailwind CSS](https://tailwindcss.com/)
website template.## Features
* Next.js 13
* [App routing](https://beta.nextjs.org/docs/routing/fundamentals) enabled by default
* TypeScript
* Tailwind CSS
* svgr
* ESLint
* Next.js core web vitals
* Prettier rules
* Prettier
* Tailwind CSS plugin
* Path aliases## Getting Started
You can use any package manager of your choice, but [pnpm](https://pnpm.io) is preferred.
### Installing
```bash
pnpm install # or yarn install, npm install, etc.
```### Development
This command starts the built-in next development server.
```bash
pnpm dev
```### Building for production
This command builds your server into a production-ready state.
```bash
pnpm build
```### Start the production server
This command starts your pre-built server and hosts it on localhost:3000 (the port depends on your port variable)
```bash
pnpm start
```