공개 상단 어나운스 바와 관리자 맞춤 설정을 추가하고, 스팸 필터에서 가입 금지 닉네임을 관리·검증한다. POST 설정 읽기 모드 비활성 토글과 설정 내비 아이콘 틀을 반영한다. Co-authored-by: Cursor <cursoragent@cursor.com>
31 lines
892 B
JavaScript
31 lines
892 B
JavaScript
import { DEFAULT_SIGNUP_BLOCKED_USERNAMES } from '../../lib/signup-blocked-usernames.js'
|
|
|
|
/**
|
|
* 기본 사이트 설정 반환
|
|
* @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: '',
|
|
announcementEnabled: false,
|
|
announcementText: '',
|
|
announcementUrl: '',
|
|
announcementBackgroundColor: '#15171a',
|
|
signupBlockedUsernames: [...DEFAULT_SIGNUP_BLOCKED_USERNAMES],
|
|
updatedAt: null
|
|
}
|
|
}
|