Lift-off I: Basics | Server Not Serving Content

Dev Environment in Debian guest i.e.
Debian Guest / On Debian Host

localhost:4000/ shows up in the browser.
studio.apollographql.com Works and I can query.

…/client/src/index.js
Has the following::

const client = new ApolloClient({
url: “http://localhost:4000”,
cache: new InMemoryCache()
});

Hi @lindylex! Thanks for the info. I noticed that your code for the client mentions url. The correct property is actually uri with an i (not an l).

I hope that helps, let me know if you’re still running into issues!

MichelleMabuyo, thanks so much for responding. That solve my problem.

1 Like