PronounsPage/plugins/speculationrules.ts
Andrea Vos b0c7082bbe lint
2025-02-23 16:26:55 +01:00

24 lines
754 B
TypeScript

export default defineNuxtPlugin(() => {
useHead({
script: [
{
type: 'speculationrules',
innerHTML: JSON.stringify({
prerender: [
{
where: {
and: [
{ href_matches: '/*' },
{ not: { selector_matches: '.no-prerender' } },
{ not: { selector_matches: '[rel~=nofollow]' } },
],
},
},
],
eagerness: 'moderate',
}),
},
],
});
});