fix: Update meta content type

Changed meta content type from text/html; charset=utf-8 to utf-8.
This commit is contained in:
Ayane Satomi 2023-10-21 15:03:18 +00:00
parent 3eaa783c15
commit 319c45a5ac
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ export default function App({ Component }: AppProps) {
return (
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Kuru Kuru~" />
<meta property="og:site_name" content="Kuru Kuru~" />

View file

@ -55,7 +55,7 @@ export const handler: Handlers = {
});
return new Response(body, {
headers: {
"Content-Type": "text/event-stream",
"Content-Type": "text/event-stream; charset=utf-8",
},
});
}