mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-23 20:23:08 +00:00
- Reverts change to use sectionid on layouts (was unreliable), using config to make sure that's specified on all pages that need it - Adds permalinks to all other pages so that og data is correct - Corrects some permalinks that were in correct (translations)
14 lines
691 B
Markdown
14 lines
691 B
Markdown
---
|
|
id: error-decoder
|
|
title: Error Decoder
|
|
permalink: docs/error-decoder.html
|
|
---
|
|
|
|
In the minified production build of React, we avoid sending down full error messages in order to reduce the number of bytes sent over the wire.
|
|
|
|
We highly recommend using the development build locally when debugging your app since it tracks additional debug info and provides helpful warnings about potential problems in your apps, but if you encounter an exception while using the production build, this page will reassemble the original text of the error.
|
|
|
|
<script src="/react/js/errorMap.js"></script>
|
|
<div class="error-decoder-container"></div>
|
|
<script src="/react/js/ErrorDecoderComponent.js"></script>
|