하드코등 주소 수정
This commit is contained in:
parent
fb9199a38a
commit
29b6143bca
File diff suppressed because it is too large
Load Diff
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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> {
|
||||
|
|
|
|||
Loading…
Reference in New Issue