我遵循了Github Codespace中的 Apollo Getting Started示例。
启动服务器后,我看到错误:
{
"error": "Preflight response is not successful"
}
要重现的示例 repo 在这里:https ://github.com/aniskny/codespaces-test
我尝试了各种选项,cors
但没有奏效:
...
new ApolloServer({ typeDefs, resolvers
cors: {
"origin": "*",
"methods": "GET,HEAD,PUT,PATCH,POST,DELETE",
"preflightContinue": false,
"optionsSuccessStatus": 204
}
});
...