diff options
Diffstat (limited to 'examples/hello-next/bun-framework-next/server.development.tsx')
-rw-r--r-- | examples/hello-next/bun-framework-next/server.development.tsx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/examples/hello-next/bun-framework-next/server.development.tsx b/examples/hello-next/bun-framework-next/server.development.tsx index 82caf0ab7..02c3eaee0 100644 --- a/examples/hello-next/bun-framework-next/server.development.tsx +++ b/examples/hello-next/bun-framework-next/server.development.tsx @@ -71,14 +71,3 @@ addEventListener("fetch", async (event: FetchEvent) => { export {}; declare var Bun: any; - -function getNextData(request: Request, route) { - return { - NEXT_DATA: { - query: route.query, - props: {}, - page: route.path, - buildId: buildId.toString(16), - }, - }; -} |