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 4021c7c commit 4326748Copy full SHA for 4326748
src/express-app/app.ts
@@ -298,8 +298,8 @@ function httpServer<
298
299
return https.createServer(
300
{
301
- key: config.key ? Buffer.from(config.key) : undefined,
302
- cert: config.certificate ? Buffer.from(config.certificate) : undefined,
+ key: config.key ? Buffer.from(config.key as string) : undefined,
+ cert: config.certificate ? Buffer.from(config.certificate as string) : undefined,
303
},
304
app,
305
);
0 commit comments