diff --git a/.changeset/static-slot-css.md b/.changeset/static-slot-css.md new file mode 100644 index 000000000000..a3f1c24752ff --- /dev/null +++ b/.changeset/static-slot-css.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +fix: add astro-static-slot to the list of inert tags in astro css diff --git a/packages/astro/src/runtime/server/scripts.ts b/packages/astro/src/runtime/server/scripts.ts index b466d1df3871..4ba12d1ab08e 100644 --- a/packages/astro/src/runtime/server/scripts.ts +++ b/packages/astro/src/runtime/server/scripts.ts @@ -1,7 +1,7 @@ import type { SSRResult } from '../../@types/astro'; import islandScript from './astro-island.prebuilt.js'; -const ISLAND_STYLES = ``; +const ISLAND_STYLES = ``; export function determineIfNeedsHydrationScript(result: SSRResult): boolean { if (result._metadata.hasHydrationScript) {