Skip to content

Base project using NextJS, Typescript, TailwindCSS

License

Notifications You must be signed in to change notification settings

xenos1337/NextJS-Base

Repository files navigation

NextJS-Typescript-Base

Base project using NextJS, Typescript, TailwindCSS

Getting Started

npm run dev
or
yarn dev

Open http://localhost:3000 with your browser to see the result.

Prodution

npm run build
or
yarn build

Preview

Project Structure

NextJS-Base
├── README.md
├── LICENSE
├── package.json
├── package-lock.json
├── pages
│   ├── index.tsx
|   ├── _app.tsx
│   ├── _document.tsx
|   ├── components
│   |   ├── Footer.tsx
|   └── api
│       ├── echo.ts
├── public
│   ├── favicon.ico
│   └── css
│       ├── globals.css
│       └── main.css
│           └── main.css
├── tsconfig.json
├── postcss.config.js
├── tailwind.config.js
├── .eslintrc.json
├── .prettierignore
└── .gitignore