diff --git a/functions/graphql.js b/functions/graphql.js index 76de5d9..7358c7f 100644 --- a/functions/graphql.js +++ b/functions/graphql.js @@ -136,4 +136,8 @@ const server = new ApolloServer({ } }); -exports.handler = server.createHandler(); +exports.handler = server.createHandler({ + cors: { + origin: '*' + } +});