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 c9a7d5e commit 7c5a8aeCopy full SHA for 7c5a8ae
src/templates/getHandler.js
@@ -87,7 +87,9 @@ const { builder } = require("@netlify/functions");
87
const { config } = require("${publishDir}/required-server-files.json")
88
const path = require("path");
89
exports.handler = ${
90
- isODB ? `builder((${makeHandler().toString()})(config));` : `(${makeHandler().toString()})(config, "${appDir}");`
+ isODB
91
+ ? `builder((${makeHandler().toString()})(config, "${appDir}"));`
92
+ : `(${makeHandler().toString()})(config, "${appDir}");`
93
}
94
`
95
0 commit comments