import { contactInfoService } from '~~/server/services/cms/contactInfoService'; export default defineEventHandler(async (event) => { const locale = getHeader(event, 'x-locale') || 'zh-CN'; return contactInfoService.getContactInfo(locale); });