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-pages
using yarn add gh-pages
or npm i gh-pages
Add the following to gridsome.config.js
:
siteUrl: 'https://<your-github-username>.github.io',
pathPrefix: '/<your-gridsome-repo-name>',
package.json
: "predeploy": "npm run build",
"deploy": "gh-pages -d dist"
Run the command npm run deploy
Go to GitHub's website and make sure your Repo's settings under "GitHub Pages" show the gh-pages
branch 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
.
<username>.github.io
):package.json
:- "deploy": "gh-pages -d dist",
+ "deploy": "gh-pages -b master -d dist",
gridsome.config.js
:- pathPrefix: '/<your-gridsome-repo-name>',
www.yourname.com
you will need to change gridsome.config.js
to:siteUrl: 'https://www.yourname.com',
https://yourname.com
points to all of your GitHub Pages sites), and your Gridsome project is not your GitHub user page (not on the root https://yourname.com
page, but a separate repo), then you will need to make sure pathPrefix
matches your Gridsome project's repo name in gridsome.config.js
:pathPrefix: '/<your-gridsome-repo-name>',