Skip to content
This repository has been archived by the owner on Oct 13, 2021. It is now read-only.

Added instruction on how to run hugo and npm watch at the same time #231

Merged
merged 2 commits into from Jun 10, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Expand Up @@ -22,6 +22,20 @@ Install dependencies, build assets and start a webserver:
make run
```

To run npm watch and hugo server at the same time:

In one terminal:

```bash
npm run watch
```

Once above process is done, in another terminal:

```bash
make run
```

### Getting Started (Windows)

To install our dependencies on Windows, replace the previous `npm install` with this one:
Expand Down