Updates Large Page Data error message doc to use JSON.parse to make reading output easier (#56713)

Fixes https://github.com/vercel/feedback/issues/26361
This commit is contained in:
Michael Novotny 2023-10-11 16:10:44 -05:00 committed by GitHub
parent daa865fff6
commit f0dd49e405
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@ Reduce the amount of data returned from `getStaticProps`, `getServerSideProps`,
To inspect the props passed to your page, you can inspect the below element's content in your browser devtools:
```bash filename="Terminal"
document.getElementById("__NEXT_DATA__").text
JSON.parse(document.getElementById("__NEXT_DATA__").textContent)
```
## Useful Links