Skip to content
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
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,23 @@ Check live demonstration <a href="https://dorota1997.github.io/react-frontend-de
...
}
```

4. `npm start` project and customize it.
5. Deploy on github-pages using `npm run deploy` command.
6. If you are getting an error regarding digital envelope routines - unsupported update scripts in package.json `"start": "react-scripts --openssl-legacy-provider start",`

```
//package.json
{
"scripts": {
"start": "react-scripts --openssl-legacy-provider start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
}
```

<pre>
⚠️ Note that:
Expand Down