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