You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update: The underlying reason seems to be that the array a is unexpectedly modified during rendering! So if a were at module scope, there would be additional escaping for each render.
Consider the following code:
During SSR, this incorrectly renders the HTML
<div>&lt;&lt;</div>
, i.e., the<
is escaped twice and is thus shown as<<
in the browser.I expected SSR to generate the single-escaped HTML
<div><<</div>
which then renders as<<
in the browser.The text was updated successfully, but these errors were encountered: