gloriaJun / react-realworld-example-app

https://gloriajun.github.io/react-realworld-example-app/
0 stars 0 forks source link

Set gh-pages #9

Closed gloriaJun closed 5 years ago

gloriaJun commented 5 years ago
gloriaJun commented 5 years ago

https://reactgo.com/deploy-react-app-github-pages/

Add homepage

package.json

"homepage":"https://yourusername.github.io/repository-name"

Install gh-pages

yarn add -D gh-pages

Deploy script

package.json

"scripts":{
    "predeploy": "$npm_execpath build",
    "deploy": "gh-pages -d build",
}