Skip to content

Commit ae64388

Browse files
committed
chore: fix handler syntax
1 parent adf10e6 commit ae64388

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/runtime/src/templates/getHandler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export const getHandler = ({
168168
minimalMode = false,
169169
}): string => {
170170
const handlerSource = makeHandler.toString()
171-
const minimal = minimalMode ? ', true' : 'false'
171+
const minimal = minimalMode ? 'true' : 'false'
172172
// This is a string, but if you have the right editor plugin it should format as js
173173
return javascript/* javascript */ `
174174
const { Server } = require("http");

0 commit comments

Comments
 (0)