Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #46

Open
wants to merge 1 commit into
base: main
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
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