Exclude Links
Exclude links from being checked by the Nuxt Link Checker.
You can exclude URLs from throwing errors by adding them to the
For example, if you have an
export default defineNuxtConfig({
linkChecker: {
excludeLinks: [
'/admin/**'
],
},
})
Did this page help you?