Skip to content

Commit 7a0e689

Browse files
guitavanoclaude
andauthored
feat(htmx): always include head-support extension (#1628)
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
1 parent cc04882 commit 7a0e689

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

htmx/mod.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ export default function Site(state: Props): App<Manifest, Required<Props>> {
4545
state: {
4646
version: state.version ?? "1.9.12",
4747
cdn: state.cdn ?? "https://cdn.jsdelivr.net/npm",
48-
extensions: state.extensions ?? [],
48+
extensions: [
49+
"head-support",
50+
...(state.extensions ?? []).filter((ext) => ext !== "head-support"),
51+
],
4952
},
5053
manifest,
5154
};

0 commit comments

Comments
 (0)