'use server'; import { ResultDto } from '@/dtos/response/common'; import { fetchJson } from '@/lib/utils/server'; import Config from '@/types/config'; // Config 값 조회 export async function fetchConfig(): Promise> { return await fetchJson('/api/config', { method: 'GET', headers: {'Content-Type': 'application/json'}, }); }