Skip to content

Commit

Permalink
🔍️ Stop indexing of 404 page
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAsel committed Aug 27, 2024
1 parent 2509edc commit 658881c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/pages/ErrorNotFound.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@ import { ref } from 'vue';
import { useHead } from '@unhead/vue';
useHead({
title: '404 Not Found - BYBE'
title: '404 Not Found - BYBE',
meta: [
{
name: 'robots',
content: 'noindex'
}
]
});
const supportButton = ref(
Expand Down

0 comments on commit 658881c

Please sign in to comment.