From d49a537f2aaccd132154a15f1da4db471272ee90 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Tue, 1 Oct 2024 15:58:14 -0400 Subject: [PATCH] Use IE conditional comment placeholders for server island start markers (#12090) These placeholders are much less likely to be removed by HTML minifiers, because they have traditionally been used to change the behavior of site. --- .changeset/rich-apes-divide.md | 5 +++++ packages/astro/src/runtime/server/render/server-islands.ts | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/rich-apes-divide.md diff --git a/.changeset/rich-apes-divide.md b/.changeset/rich-apes-divide.md new file mode 100644 index 0000000000..c0f70e5b96 --- /dev/null +++ b/.changeset/rich-apes-divide.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Server islands: changes the server island HTML placeholder comment so that it is much less likely to get removed by HTML minifiers. diff --git a/packages/astro/src/runtime/server/render/server-islands.ts b/packages/astro/src/runtime/server/render/server-islands.ts index 0a07211344..6dd06b8d7b 100644 --- a/packages/astro/src/runtime/server/render/server-islands.ts +++ b/packages/astro/src/runtime/server/render/server-islands.ts @@ -47,7 +47,7 @@ export function renderServerIsland( } } - destination.write(''); + destination.write(''); // Render the slots const renderedSlots: Record = {}; @@ -88,7 +88,7 @@ if(response.status === 200 && response.headers.get('content-type') === 'text/htm // Swap! while(script.previousSibling && script.previousSibling.nodeType !== 8 && - script.previousSibling.data !== 'server-island-start') { + script.previousSibling.data !== '[if astro]>server-island-start