swup / preload-plugin

A swup plugin for preloading pages to speed up navigation 🚀
https://swup.js.org/plugins/preload-plugin
MIT License
14 stars 14 forks source link

feat: ignore visible links #106

Closed hirasso closed 1 year ago

hirasso commented 1 year ago

Description

Adds a new option preloadVisibleLinks.ignore to opt out from automatic preloading for selected elements:

{
    preloadVisibleLinks: {
        ignore: (el) => !!el.closest('.footer')
    },
},

Or:

{
    preloadVisibleLinks: {
        ignore: (el) => el.pathname.startsWith('/imprint')
    },
},

Checks