使用Github Pages创建主页

时间:2018-12-24 18:31:16

标签: reactjs git

我已经在这里呆了一段时间了,我似乎做对了。

我最近创建了一个简单的游戏,您可以在github页面上访问https://myusername.github.io/nameofgame

除此之外,我还想创建一个主页,可以在https://myusername.github.io上访问它

我当前的流程如下:

create-react-app myusername.github.io <br>
cd into it
npm run build
add "homepage": "https://coloringnuns.github.io" into package.json
npm run build
npm install --save-dev gh-pages
add "deploy" : "npm run build && gh-pages -d build" into scripts in package.json
git remote add origin https://github.com/myusername/myusername.github.io.git
git add .
git commit -m "initial commit"
git push -u origin master
npm run deploy

但是,尽管这确实发布了myusername.github.io,但实际上只显示了readme.md文件,而不是实际的应用程序。我遵循https://medium.freecodecamp.org/surge-vs-github-pages-deploying-a-create-react-app-project-c0ecbf317089的协议;为什么不起作用?

0 个答案:

没有答案