Skip to content

Commit d90e873

Browse files
authored
docs(apollo-gateway): fix startStandaloneServer usage (#6871)
1 parent be0d710 commit d90e873

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/web/docs/src/content/other-integrations/apollo-gateway.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const gateway = new ApolloGateway({
7171

7272
const server = new ApolloServer({ gateway })
7373

74-
const { url } = await startStandaloneServer({ server })
74+
const { url } = await startStandaloneServer(server)
7575
console.log(`🚀 Server ready at ${url}`)
7676
```
7777

@@ -113,7 +113,7 @@ const server = new ApolloServer({
113113
]
114114
})
115115

116-
const { url } = await startStandaloneServer({ server })
116+
const { url } = await startStandaloneServer(server)
117117
console.log(`🚀 Server ready at ${url}`)
118118
```
119119

0 commit comments

Comments
 (0)