rsnext/errors/get-initial-props-export.mdx
Delba de Oliveira 44d1a1cb15
docs: Migrate error messages to MDX and App Router. (#52038)
This PR is part of a larger effort to migrate error messages to MDX and
use App Router: https://github.com/vercel/front/pull/23459
2023-07-05 06:11:16 -07:00

17 lines
508 B
Text

---
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)