We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e08ed76 commit 0646ffeCopy full SHA for 0646ffe
examples/edge-functions/netlify/edge-functions/log.ts
@@ -3,9 +3,7 @@ import type { Context, Config } from "@netlify/edge-functions";
3
export default async (request: Request, context: Context) => {
4
console.log("Hello from the logging service");
5
6
- return new Response("The request to this URL was logged", {
7
- headers: { "content-type": "text/plain" },
8
- });
+ return new Response("The request to this URL was logged");
9
};
10
11
export const config: Config = {
0 commit comments