astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
23 lines (22 loc) • 489 B
JavaScript
function generateSpeculationRulesContent(prefetchAll) {
const selector = prefetchAll ? "a" : "a[data-astro-prefetch]";
return JSON.stringify({
prerender: [
{
source: "document",
where: { selector_matches: selector },
eagerness: "moderate"
}
],
prefetch: [
{
source: "document",
where: { selector_matches: selector },
eagerness: "moderate"
}
]
});
}
export {
generateSpeculationRulesContent
};