Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/arthurpedroti/landing-page


https://github.com/arthurpedroti/landing-page

Last synced: 9 days ago
JSON representation

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
```