Remove log statement.

This commit is contained in:
Dillon Kearns 2021-07-26 17:06:46 -07:00
parent 3b2af1e9a8
commit eadabe1513

View File

@ -44,7 +44,6 @@ function prefetchIfNeeded(/** @type {HTMLAnchorElement} */ target) {
!prefetchedPages.includes(target.pathname)
) {
prefetchedPages.push(target.pathname);
console.log("Preloading...", target.pathname);
const link = document.createElement("link");
link.setAttribute("as", "fetch");