Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arthurpedroti/landing-page
https://github.com/arthurpedroti/landing-page
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/arthurpedroti/landing-page
- Owner: ArthurPedroti
- Created: 2021-07-31T11:36:44.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-08-05T14:35:08.000Z (over 3 years ago)
- Last Synced: 2024-11-08T07:42:24.869Z (2 months ago)
- Language: TypeScript
- Size: 583 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- 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
```