@absolutejs/absolute 0.19.0-beta.256 → 0.19.0-beta.258

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -174319,7 +174319,8 @@ var renderToReadableStream = async (component, props, {
174319
174319
  } = {}) => {
174320
174320
  try {
174321
174321
  const { render } = await import("svelte/server");
174322
- const { head, body } = typeof props === "undefined" ? render(component) : render(component, { props });
174322
+ const { head: rawHead, body } = typeof props === "undefined" ? render(component) : render(component, { props });
174323
+ const head = rawHead.replace(/(<!--[a-z0-9]+-->)([\s\S]*?)(<!---->)\s*(<title>[\s\S]*?<\/title>)/, "$1$4$2$3");
174323
174324
  const nonceAttr = nonce ? ` nonce="${nonce}"` : "";
174324
174325
  const scripts = (bootstrapScriptContent ? `<script${nonceAttr}>${escapeScriptContent(bootstrapScriptContent)}</script>` : "") + bootstrapScripts.map((src) => `<script${nonceAttr} src="${src}"></script>`).join("") + bootstrapModules.map((src) => `<script${nonceAttr} type="module" src="${src}"></script>`).join("");
174325
174326
  const encoder = new TextEncoder;
@@ -178447,5 +178448,5 @@ export {
178447
178448
  ANGULAR_INIT_TIMEOUT_MS
178448
178449
  };
178449
178450
 
178450
- //# debugId=BB4225EEAA019CDC64756E2164756E21
178451
+ //# debugId=097E94DE4CB1628364756E2164756E21
178451
178452
  //# sourceMappingURL=index.js.map