diff --git a/src/pages/manifest.json.ts b/src/pages/manifest.json.ts index 26fd13c..bab70e0 100644 --- a/src/pages/manifest.json.ts +++ b/src/pages/manifest.json.ts @@ -23,8 +23,6 @@ const favicons: Favicon[] = [ }, ]; -console.log(favicons); - export const GET: APIRoute = async () => { const icons = await Promise.all( favicons.flatMap((favicon) => @@ -56,9 +54,5 @@ export const GET: APIRoute = async () => { background_color: "#262626", }; - console.log( - JSON.stringify(manifest, null, 2), - ); - return new Response(JSON.stringify(manifest)); };