Does a Prisma local server work in offline mode (i...
# orm-help
v
Does a Prisma local server work in offline mode (i.e. no internet connectivity)? I'm trying to debug why my test app doesn't work when offline (the only data source for it is via GraphQL provided by prisma).
n
Yes.
a
@virtualirfan I had issues yesterday where localhost:4466 (ie. Prisma binding server) wouldn’t run properly while offline despite running from docker container. Localhost:4000 would run fine. Makes me wonder if there are some external resources being loaded by playground which don’t load because of CDN calls ?
n
Ah that's interesting, could be the case @alechp! However, this should not impact the actual application, as it does not rely on Playground.
a
@nilan That’s a relief 👍