feat: 에러페이지, 점검 페이지 로봇 검색 안되도록 추가 'noindex, nofollow'
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user