phase 3 20 env
This commit is contained in:
@@ -2,7 +2,7 @@ import axios from "axios";
|
||||
import { useAuthStore } from "@/store/authStore";
|
||||
|
||||
const apiClient = axios.create({
|
||||
baseURL: process.env.NEXT_PUBLIC_API_URL ?? "http://localhost:8081/api",
|
||||
baseURL: process.env.NEXT_PUBLIC_API_URL ?? "http://localhost:8000/api",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
});
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ import { getMyTicketsApi, type TicketResponse } from "@/api/client";
|
||||
|
||||
/** Replace internal MinIO hostname with the externally accessible address */
|
||||
const MINIO_INTERNAL = "http://minio:9000";
|
||||
const MINIO_EXTERNAL = "http://192.168.149.101:9000";
|
||||
const MINIO_EXTERNAL = process.env.NEXT_PUBLIC_MINIO_URL ?? "http://localhost:9000";
|
||||
|
||||
const RU_MONTHS = [
|
||||
"Января", "Февраля", "Марта", "Апреля", "Мая", "Июня",
|
||||
|
||||
Reference in New Issue
Block a user