https://github.com/willianjusten/nextjs-pratica
https://github.com/willianjusten/nextjs-pratica
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/willianjusten/nextjs-pratica
- Owner: willianjusten
- Created: 2021-03-01T15:02:26.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-04-26T11:33:27.000Z (about 2 years ago)
- Last Synced: 2025-01-17T17:13:57.615Z (4 months ago)
- Language: TypeScript
- Homepage: https://nextjs.willianjusten.com.br
- Size: 1.81 MB
- Stars: 15
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple NextJS Quick Start
A simple project starter to work with React, NextJS and Styled Components
You can see the example in [https://nextjs-quickstart.now.sh/](https://nextjs-quickstart.now.sh/)
### 📦 Install
```
$ git clone https://github.com/guilouro/simple-nextjs-quick-start.git$ yarn install
```### 🔨 How to use
Runs next which starts Next.js in development mode
```bash
$ yarn dev
```Runs next build which builds the application for production usage
```bash
$ yarn build
```Runs next start which starts a Next.js production server
```bash
$ yarn start
```Runs next build and export which exports a files in a `out` folder to deploy
```bash
$ yarn deploy
```