chore: ⬆️ Upgrade dependencies

This commit is contained in:
Jesse Wierzbinski 2025-02-25 23:32:05 +01:00
parent 066220ffbd
commit f114f9a51a
No known key found for this signature in database
5 changed files with 152 additions and 199 deletions

View file

@ -11,6 +11,8 @@ export const createServer = (
Bun.serve({
port: config.http.bind_port,
reusePort: true,
// @ts-expect-error @types/bun is missing the tls property for some reason
// see https://github.com/oven-sh/bun/issues/13167
tls: config.http.tls
? {
key: config.http.tls.key.file,