Skip to content

Commit

Permalink
hello
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecAivazis committed Feb 9, 2024
1 parent 1862f25 commit 0b9a38e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/houdini/src/runtime/router/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ export function _serverHandler<ComponentType = unknown>({

client.componentCache = componentCache

// @ts-ignore: schema is defined dynamically
if (schema) {
client.registerProxy(graphqlEndpoint, async ({ query, variables, session }) => {
// get the parsed query
Expand All @@ -66,6 +65,8 @@ export function _serverHandler<ComponentType = unknown>({
)
}

return new Response('Hello from adapter')

// pull out the desired url
const url = new URL(request.url).pathname

Expand Down

0 comments on commit 0b9a38e

Please sign in to comment.