Skip to content
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ yarn-error.log*
*.njsproj
*.sln
*.sw?

# package-lock.json
.package-lock.json
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,18 @@ In order to run it locally you'll need to fetch some dependencies and a basic se
$ npm install
```

* To resolve dependency conflict related to sass-loader and node-sass versions, you can try running the npm install command with the --force flag or --legacy-peer-deps flag to force the installation.

```sh
$ npm install --force
```
or

```sh
$ npm install --legacy-peer-deps
```


* Start the development server and open [`http://localhost:8080`](http://localhost:8080).

```sh
Expand Down
Loading