Deploy to GitHub pages
GitHub Pages allows you to deploy your site to GitHub's free static site hosting service.
There's a few steps to complete:
Install
gh-pagesusingyarn add gh-pagesornpm i gh-pagesAdd the following to
gridsome.config.js:
siteUrl: 'https://<your-github-username>.github.io',
pathPrefix: '/<your-gridsome-repo-name>',- Add the following scripts to your
package.json:
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"Run the command
npm run deployGo to GitHub's website and make sure your Repo's settings under "GitHub Pages" show the
gh-pagesbranch under "Source".
Notes
GitHub Pages allows you to have a "Github user page" that acts as a profile/main page on <your-github-username>.github.io by having a repo named <your-github-username>.github.io.
- If you are deploying to your GitHub user page (your main site on
<username>.github.io):- Make the following adjustments to your
package.json:- "deploy": "gh-pages -d dist", + "deploy": "gh-pages -b master -d dist", - And Remove this line from
gridsome.config.js:- pathPrefix: '/<your-gridsome-repo-name>',
- Make the following adjustments to your
- If you are using a custom URL such as
www.yourname.comyou will need to changegridsome.config.jsto:siteUrl: 'https://www.yourname.com', - If you are using an apex domain for your GitHub user page (ie.
https://yourname.compoints to all of your GitHub Pages sites), and your Gridsome project is not your GitHub user page (not on the roothttps://yourname.compage, but a separate repo), then you will need to make surepathPrefixmatches your Gridsome project's repo name ingridsome.config.js:pathPrefix: '/<your-gridsome-repo-name>',