Files
Modrinth-plus/apps/frontend/src/pages/admin.vue
Prospector cefa7b90ed Add noindex to pages that should be private (#5257)
* Add noindex to pages that should be private

* fix unused
2026-01-30 13:04:19 -08:00

9 lines
108 B
Vue

<script setup lang="ts">
useSeoMeta({
robots: 'noindex',
})
</script>
<template>
<NuxtPage />
</template>