enabledbooleantrueWhether to scan links.
skipInspectionsstring[][]An array of inspection names to skip.
See Link Checking Rules for a list of inspections.
fetchTimeoutnumber5000How long to wait for a response before timing out.
report{ html?: boolean; markdown?: boolean; json?: boolean; publish?: boolean }undefinedReports to generate on build.
See the Generate Reports guide for more details.
showLiveInspectionsbooleantrueShow inspections as they are run.
runOnBuildbooleantrueWhether to run the link checker on build.
failOnErrorbooleantrueIf set to true, the build will fail if any broken links are found.
excludeLinks(string | RegExp)[][/^\/_.*$/]Links to exclude from inspection. Supports exact matches, wildcard patterns (using radix3), and regular expressions.
Pattern Types:
/about/admin/** (all admin routes), /api/* (direct children only)/^\/blog\/\d+$/ (blog posts with numeric IDs)https://example.com/**Useful for routes that aren't prerendered but are known to be valid, or external links you don't want checked.
debugbooleanfalseEnable to see debug logs.
hoststringruntimeConfig.public.siteUrl || localhostThe host of your site. This is required to validate absolute URLs which may be internal.
This is now handled by the nuxt-site-config module.
trailingSlashbooleanfalseWhether internal links should have a trailing slash or not.
This is now handled by the nuxt-site-config module.