From 319c45a5acbe64763216e1fdcd4c5ec9de204a9d Mon Sep 17 00:00:00 2001 From: Ayane Satomi Date: Sat, 21 Oct 2023 15:03:18 +0000 Subject: [PATCH] fix: Update meta content type Changed meta content type from text/html; charset=utf-8 to utf-8. --- routes/_app.tsx | 2 +- routes/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/routes/_app.tsx b/routes/_app.tsx index 4be532a..97f7754 100644 --- a/routes/_app.tsx +++ b/routes/_app.tsx @@ -5,7 +5,7 @@ export default function App({ Component }: AppProps) { return ( - + diff --git a/routes/index.tsx b/routes/index.tsx index d8d8fc4..d2eafdb 100644 --- a/routes/index.tsx +++ b/routes/index.tsx @@ -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", }, }); }