astro/packages/integrations/prefetch/test/fixtures/basic-prefetch/src/pages/index.astro
Oskar Baumann 92b27e9c92
[@astrojs/prefetch]: Prevent prefetching current page (#5009)
* Check that removal of url.hash breaks no tests

* test if status-quo is as expected

* Adapt tests to fail

* Adapt the shouldPreload function to skip same path

* Add changeset
2022-10-07 10:13:51 -04:00

29 lines
358 B
Text

---
---
<html>
<head>
<title>Home</title>
</head>
<body>
<h1>Home</h1>
<nav>
<ul>
<li>
<a href="/" rel="prefetch">Home</a>
</li>
<li>
<a href="/about" rel="prefetch">About</a>
</li>
<li>
<a href="/admin">Admin</a>
</li>
</ul>
</nav>
<footer>
<a href="/contact" rel="prefetch">Contact</a>
</footer>
</body>
</html>