We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a76e2c commit 04b8c52Copy full SHA for 04b8c52
1 file changed
src/runtime/server/server.ts
@@ -196,7 +196,7 @@ function createContextCreator(
196
// Integrate context from plugins
197
for (const plugin of plugins) {
198
if (!plugin.context) continue
199
- const contextContribution = plugin.context.create(params.req)
+ const contextContribution = await plugin.context.create(params.req)
200
201
Object.assign(context, contextContribution)
202
}
0 commit comments