This repository has been archived on 2026-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
next-deploy/examples/github/README.md
2020-07-23 10:50:41 -07:00

13 lines
523 B
Markdown

Deployments to [GitHub Pages](#https://pages.github.com/) work strictly for static sites, but still possess most of the advantages of using Next.js such as automatic page pre-loading.
An up-to-date Static-Site Generation implementation of https://www.nidratech.com and its deployment using Next Deploy can be found at: https://github.com/nidratech/nidratech.com
The key part is its `next.config.js` configuration:
```javascript
module.exports = {
engine: 'github',
debug: true,
domain: 'www.nidratech.com',
};
```