From 638137abbda34988fa0a890d83afd4f5757aba48 Mon Sep 17 00:00:00 2001 From: "MD. Ariful Alam" Date: Sun, 29 Aug 2021 00:20:08 +0600 Subject: [PATCH] Fix deploy guide --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4e23643..f13c286 100644 --- a/README.md +++ b/README.md @@ -381,19 +381,19 @@ Once you are done with your setup and have completed all steps above, you need t **1. Github Pages:** - Rename your forked repository to username.github.io in github, where username is your GitHub username (or organization name). - - Open package.json, and change homepage's value to username.github.io. + - Open package.json, and change homepage's value to https://username.github.io. ```js // package.json { // ... - "homepage": "username.github.io", + "homepage": "https://username.github.io", } ``` - Run npm run deploy. - Your personal portfolio will be live at username.github.io. For more info, visit [here](https://create-react-app.dev/docs/deployment/#github-pages). + Your personal portfolio will be live at https://username.github.io. For more info, visit [here](https://create-react-app.dev/docs/deployment/#github-pages).