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 d2672fc commit 43d55d3Copy full SHA for 43d55d3
src/server.ts
@@ -32,7 +32,7 @@ export async function handler(req: IncomingMessage, res: ServerResponse) {
32
const userAgent = headers['user-agent'] || '';
33
const reqId = String(headers['x-vercel-id'] || '')
34
.split(':')
35
- .pop();
+ .pop() || '';
36
console.log(`${method} ${headers.host}${url}`);
37
console.log(`user-agent: ${userAgent}`);
38
if (
0 commit comments