From 039cab06e7c9f2f483430a1e23a404160b656717 Mon Sep 17 00:00:00 2001 From: Banks Nussman Date: Wed, 27 Sep 2023 14:59:15 -0400 Subject: [PATCH] docs(bun): Fix Bun Import (#502) --- website/src/pages/get-started.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/pages/get-started.mdx b/website/src/pages/get-started.mdx index 25e1d42d..a0b40085 100644 --- a/website/src/pages/get-started.mdx +++ b/website/src/pages/get-started.mdx @@ -118,7 +118,7 @@ fastify.listen(4000, (err) => { #### With [Bun](https://bun.sh) ```ts -import { makeHandler, handleProtocols } from 'graphql-ws/lib/use/lib/bun'; +import { makeHandler, handleProtocols } from 'graphql-ws/lib/use/bun'; import { schema } from './previous-step'; Bun.serve({