하드코등 주소 수정

This commit is contained in:
dohyeons 2025-10-02 17:14:08 +09:00
parent fb9199a38a
commit 29b6143bca
4 changed files with 1036 additions and 3 deletions

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@
*/
export const AUTH_CONFIG = {
API_BASE_URL: process.env.NEXT_PUBLIC_API_URL || "http://39.117.244.52:8080/api",
API_BASE_URL: process.env.NEXT_PUBLIC_API_URL || "http://localhost:8080/api",
ENDPOINTS: {
LOGIN: "/auth/login",
STATUS: "/auth/status",

View File

@ -4,7 +4,7 @@
export const LAYOUT_CONFIG = {
COMPANY_NAME: "WACE 솔루션",
API_BASE_URL: process.env.NEXT_PUBLIC_API_URL || "http://39.117.244.52:8080/api",
API_BASE_URL: process.env.NEXT_PUBLIC_API_URL || "http://localhost:8080/api",
ENDPOINTS: {
USER_MENUS: "/admin/user-menus",

View File

@ -5,7 +5,7 @@
import { Company, CompanyFormData } from "@/types/company";
import { apiClient } from "./client";
const API_BASE_URL = process.env.NEXT_PUBLIC_API_URL || "http://39.117.244.52:8080/api";
const API_BASE_URL = process.env.NEXT_PUBLIC_API_URL || "http://localhost:8080/api";
// API 응답 타입 정의
interface ApiResponse<T = any> {