API 失效
-
只顯示有標題的文章
-
可顯示 markdowon 格式,但有些 tag 的 css 被我 reset 了,所以看不出差別
-
使用
BrowserRouter
後, 刷新網頁會找不到,把 404.html 內容改成 index.html 的內容package.json
內build
的指令加上cp build/index.html build/404.html
,就會自動複製過去
-
直接在
mentor-program-3rd-lagom0327
資料夾中使用 create-react-app 建立此檔案,需在hw1
中新增.env
, 文件中寫SKIP_PREFLIGHT_CHECK=true
用來忽略套件衝突
-
npm install gh-pages --save-dev
-
package.json
加上homepage
屬性"homepage": "http://lagom0327github.io/react-blog"
-
package.json
的scripts
中加上"scripts": { //... "predeploy": "npm run build", "deploy": "gh-pages -d build" }
-
git init
->git remote add origin https://github.com/lagom0327/react-blog.git
->npm run deploy
會要求輸入 github 帳號密碼, 成功後會在react-blog
的 repository 新增名為gh-pages
的 branch。 -
到 github 的 repository 的 setting 中
Github Pages
來源為gh-pages branch