Skip to content
This repository has been archived by the owner on Feb 15, 2023. It is now read-only.

Adds Netlify deploy instructions #267

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,18 @@ Then, from within your project folder:
npm run build
surge public my-project.surge.sh
```

### With [Netlify](https://www.netlify.com/) CLI

Install `netlify-cli` if you haven't already:

```bash
npm install -g netlify-cli
```

Then, from within your project folder:

```bash
npm run build
netlify deploy --dir=public --prod
```