Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/src/config/axiosConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import axios, {
type InternalAxiosRequestConfig,
} from "axios";

const API_BASE_URL = "http://localhost:8000";
const API_BASE_URL = "https://studi-io-5w1z.onrender.com/";

const api: AxiosInstance = axios.create({
baseURL: API_BASE_URL,
Expand Down
2 changes: 1 addition & 1 deletion client/src/config/socket.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { io, Socket } from "socket.io-client";

const SOCKET_URL = "http://localhost:8000";
const SOCKET_URL = "https://studi-io-5w1z.onrender.com/";

export const socket: Socket = io(SOCKET_URL, {
autoConnect: false,
Expand Down