If you use the bootstrapScriptContent option of renderToPipeableStream() to provide hydration data (as recommended in the <script> upgrade guide) with JSON.stringify() it doesn’t work because React escapes HTML characters in bootstrapScriptContent like quotes. I’ve worked around this by using backticks to deliniate strings.
What’s the correct thing to do here?
https://github.com/facebook/react/blob/cdb8a1d19d0c0d43a72c3f0fe739b04da247c360/packages/react-dom/src/server/ReactDOMServerFormatConfig.js#L99-L105
If you use the
bootstrapScriptContentoption ofrenderToPipeableStream()to provide hydration data (as recommended in the <script> upgrade guide) withJSON.stringify()it doesn’t work because React escapes HTML characters inbootstrapScriptContentlike quotes. I’ve worked around this by using backticks to deliniate strings.What’s the correct thing to do here?
https://github.com/facebook/react/blob/cdb8a1d19d0c0d43a72c3f0fe739b04da247c360/packages/react-dom/src/server/ReactDOMServerFormatConfig.js#L99-L105