aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/services/graphql-client.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/services/graphql-client.ts')
-rw-r--r--frontend/src/services/graphql-client.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/frontend/src/services/graphql-client.ts b/frontend/src/services/graphql-client.ts
deleted file mode 100644
index 4b2532a..0000000
--- a/frontend/src/services/graphql-client.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import { Client, cacheExchange, fetchExchange } from "urql";
-
-export const client = new Client({
- url: "/graphql",
- exchanges: [cacheExchange, fetchExchange],
- fetchOptions: {
- // Include cookies for session management
- credentials: "include",
- },
-});