Deploying to GitHub Pages
This example supports deploying a statically exported Next.js application to GitHub Pages.
The out directory should not be ignored by version control.
How to use
Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:
npx create-next-app --example github-pages github-pages-app
yarn create next-app --example github-pages github-pages-app
pnpm create next-app --example github-pages github-pages-app
Deploy to GitHub Pages
- Create a new public GitHub repository.
- Edit
next.config.jsto match your GitHub repository name:- Given the pattern
https://github.com/<user>/<repo>, update yourbasePathconfig to/repo.
- Given the pattern
- Push the starter code to the
mainbranch. - Run the
deployscript (e.g.npm run deploy) to create thegh-pagesbranch. - On GitHub, go to Settings > Pages > Branch, and choose
gh-pagesas the branch with the/rootfolder. Hit Save. - Make a change.
- Run the
deployscript again to push the changes to GitHub Pages.
Congratulations! You should have a URL like:
https://<github-user-name>.github.io/<github-project-name>/