Inspections
The following inspections are run by default:
Inspection | Description |
---|---|
Checks for missing hashes in internal links. | |
Checks for error responses (4xx, 5xx) on internal links. | |
Checks for baseless links. | |
Checks for javascript links. | |
Checks for trailing slashes on internal links. | |
Checks for absolute site URLs. | |
Checks for redirects. |
Skipping Inspections
You can skip inspections by adding them to the
For example, if you want to skip the
export default defineNuxtConfig({
linkChecker: {
skipInspections: [
'missing-hash'
],
},
})
Did this page help you?