Guides
Exclude Links
Last updated by
Harlan Wilton
in doc: clean up. You can exclude URLs from throwing errors by adding them to the excludeLinks
array.
For example, if you have an /admin
route that is a separate application, you can ignore all /admin
links with:
export default defineNuxtConfig({
linkChecker: {
excludeLinks: [
'/admin/**'
],
},
})
Did this page help you?