라이브 모드 코드/콜아웃/토글 편집, 슬래시 명령, 홈 Latest List·Compact·Cards 보기, 사이트 설정 메인 화면 커버(720px) 및 HomeHero 반영. Co-authored-by: Cursor <cursoragent@cursor.com>
24 lines
608 B
JavaScript
24 lines
608 B
JavaScript
/**
|
|
* 기본 사이트 설정 반환
|
|
* @returns {Object} 기본 사이트 설정
|
|
*/
|
|
export const getDefaultSiteSettings = () => {
|
|
const config = useRuntimeConfig()
|
|
const title = config.public.siteTitle || 'sori.studio'
|
|
|
|
return {
|
|
title,
|
|
description: 'sori.studio 개인 블로그',
|
|
siteUrl: config.public.siteUrl || 'https://sori.studio',
|
|
logoText: '井',
|
|
logoUrl: '',
|
|
faviconUrl: '',
|
|
copyrightText: `©${new Date().getFullYear()} ${title}`,
|
|
showPostUpdatedAt: false,
|
|
homeCoverImageUrl: '',
|
|
homeCoverTitle: '',
|
|
homeCoverText: '',
|
|
updatedAt: null
|
|
}
|
|
}
|