We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e99ac3a commit a6607a7Copy full SHA for a6607a7
src/pages/articles/[...page].astro
@@ -29,6 +29,7 @@ const { page } = Astro.props;
29
href={page.url.prev}
30
class:list={["join-item btn", !page.url.prev && "invisible"]}
31
aria-hidden={!page.url.prev}
32
+ data-astro-prefetch="viewport"
33
>
34
«
35
</a>
@@ -37,6 +38,7 @@ const { page } = Astro.props;
37
38
href={page.url.next}
39
class:list={["join-item btn", !page.url.next && "invisible"]}
40
aria-hidden={!page.url.next}
41
+ data-astro-prefetch="load"
42
43
»
44
0 commit comments