We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
favicon.ico
Given the simplest of Apollo Server instances, run Sandbox and inspect the browser's logs for:
Failed to load resource: the server responded with a status of 400 (Bad Request) :4000/favicon.ico:1
Repro:
npm init -y npm i @apollo/server graphql touch index.js
// index.js import { ApolloServer } from "@apollo/server"; import { startStandaloneServer } from "@apollo/server/standalone"; const server = new ApolloServer({ typeDefs: `#graphql type Query { hello: String } `, }); startStandaloneServer(server, { listen: { port: 4000 } }).then(() => { console.log("Server running at http://localhost:4000"); });
node index.js
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given the simplest of Apollo Server instances, run Sandbox and inspect the browser's logs for:
Repro:
The text was updated successfully, but these errors were encountered: