feat: 에러페이지, 점검 페이지 로봇 검색 안되도록 추가 'noindex, nofollow'

This commit is contained in:
“hyeonggkim”
2026-03-30 14:45:54 +09:00
parent c802c68158
commit 413567750c
2 changed files with 10 additions and 0 deletions

View File

@@ -61,6 +61,11 @@
</template>
<script setup lang="ts">
// SEO: Prevent search engine indexing of error pages
useSeoMeta({
robots: 'noindex, nofollow',
})
interface ErrorProps {
error?: {
statusCode?: number

View File

@@ -119,6 +119,11 @@ import { globalDateFormat } from '@seed-next/date'
import AtomsIconsPlayRoundFill from '#layers/components/atoms/icons/PlayRoundFill.vue'
import type { PlatformTransformType } from '#layers/types/api/gameData'
// SEO: Prevent search engine indexing of inspection pages
useSeoMeta({
robots: 'noindex, nofollow',
})
const config = useRuntimeConfig()
const stoveApiUrl = config.public.stoveApiUrl as string