@kaliber/build 0.0.126 → 0.0.127
Sign up to get free protection for your applications and to get access to all the features.
@@ -12,7 +12,9 @@ export function ComponentServerWrapper({ componentName, props, renderedComponent
|
|
12
12
|
|
13
13
|
{/* Use render blocking script to remove the container and supply the correct comment nodes.
|
14
14
|
This ensures the page is never rendered with the intermediate structure */}
|
15
|
-
<script dangerouslySetInnerHTML={{
|
15
|
+
<script dangerouslySetInnerHTML={{
|
16
|
+
__html: restructureDomNodes(componentInfo).replace(/<\/?script>/gi, '')
|
17
|
+
}} />
|
16
18
|
</>
|
17
19
|
)
|
18
20
|
}
|
package/package.json
CHANGED