Remove console.log statements left in manifest.json.ts
This commit is contained in:
parent
c1bccf25d5
commit
3a4662a5b0
1 changed files with 0 additions and 6 deletions
|
@ -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));
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue