diff --git a/.changeset/static-slot-css.md b/.changeset/static-slot-css.md
new file mode 100644
index 000000000..a3f1c2475
--- /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 b466d1df3..4ba12d1ab 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) {