fix: update baseURL configuration and remove unnecessary response logging in media service
Build and Release / release (push) Successful in 29s

This commit is contained in:
2026-05-25 08:34:11 +07:00
parent 351ab12881
commit 5bd4a4e402
2 changed files with 3 additions and 4 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
import axios, { AxiosError, InternalAxiosRequestConfig } from "axios";
export const baseURL = process.env.NEXT_PUBLIC_API_URL || "http://localhost:3344";
export const baseURL =
process.env.NEXT_PUBLIC_API_URL_ROOT || process.env.NEXT_PUBLIC_API_URL || "http://localhost:3344";
export const api = axios.create({
baseURL,