From 36dd182d11efccc25c16e8d310abffbea3cdf7d6 Mon Sep 17 00:00:00 2001 From: areos Date: Sun, 3 Dec 2023 23:53:42 +1030 Subject: [PATCH] testing: deploy with heroku --- src/apis/axios.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apis/axios.ts b/src/apis/axios.ts index 456b713..c583bb7 100644 --- a/src/apis/axios.ts +++ b/src/apis/axios.ts @@ -2,7 +2,7 @@ import axios from "axios"; const apis = axios.create({ withCredentials: true, - baseURL: "http://localhost:6464", + baseURL: "http://https://src-backend-453b0a1d3a5a.herokuapp.com:6464", }); export default apis;