diff options
Diffstat (limited to 'src/routes/index.jsx')
| -rw-r--r-- | src/routes/index.jsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/routes/index.jsx b/src/routes/index.jsx index 1b778ef..df46102 100644 --- a/src/routes/index.jsx +++ b/src/routes/index.jsx @@ -9,9 +9,11 @@ import Layout from "../components/Layout"; export default function index() { const [userData, setUserData] = useState({}); - const url = "/api/v1/auth/data"; + const url = "http://localhost:3000/api/v1/auth/data"; useEffect(() => { - fetch(url).then((response) => { + fetch(url, { + credentials: "include" +}).then((response) => { if(response.ok) { return response.json(); } |
