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 7d52294 commit 5b8544fCopy full SHA for 5b8544f
src/adapter/bun/index.ts
@@ -341,7 +341,9 @@ export const BunAdapter: ElysiaAdapter = {
341
),
342
websocket: {
343
...(app.config.websocket || {}),
344
- ...(websocket || {})
+ ...(websocket || {}),
345
+ // @ts-expect-error not available in this variant of options type
346
+ ...(options.websocket || {})
347
},
348
fetch: app.fetch
349
} as Serve)
0 commit comments