fixed credential issues

This commit is contained in:
2026-04-07 01:32:48 +03:30
parent 3579e03646
commit 657dcb072d
2 changed files with 2 additions and 1 deletions

2
dist/graphiql.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -7,6 +7,7 @@ import "graphiql/graphiql.css";
const fetcher = async (params) => { const fetcher = async (params) => {
const res = await fetch(import.meta.env.VITE_GRAPHQL_ENDPOINT, { const res = await fetch(import.meta.env.VITE_GRAPHQL_ENDPOINT, {
method: "POST", method: "POST",
credentials: "include",
headers: { headers: {
"Content-Type": "application/json", "Content-Type": "application/json",
}, },