rsnext/errors/get-initial-props-export.mdx

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
508 B
Text
Raw Normal View History

---
title: '`getInitialProps` Export Warning'
---
#### Why This Warning Occurred
You attempted to statically export your application via `output: 'export'` or `next export`, however, one or more of your pages uses `getInitialProps`.
Next.js discourages you to use `getInitialProps` in this scenario.
## Possible Ways to Fix It
Use `getStaticProps` instead for proper SSG support.
## Useful Links
- [`getStaticProps` Documentation](/docs/pages/building-your-application/data-fetching/get-static-props)