We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10bf932 commit 9201e71Copy full SHA for 9201e71
2 files changed
.changeset/fifty-flies-yell.md
@@ -0,0 +1,5 @@
1
+---
2
+"@solidjs/start": minor
3
4
+
5
+fix text/html missing when ssr is false
packages/start/src/server/handler.ts
@@ -79,6 +79,8 @@ export function createBaseHandler(
79
return redirect(context.response.headers.get("Location")!, status);
80
}
81
82
+ event.response.headers.set("content-type", "text/html");
83
84
return html;
85
86
0 commit comments