Link Checker
Guides

Checking Links

Learn more about live inspections with Nuxt Link Checker.

Live Inspections are a feature of the Nuxt Link Checker that allows you to see the results of inspections on the associated link in real time.

Red squiggles indicate a broken link, while yellow squiggles indicate a link that has a warning.

Enabling Live Inspections

Live Inspections are enabled by default when you have Nuxt Dev Tools enabled.

nuxt.config.ts
export default defineNuxtConfig({
  devtools: {
    enabled: true,
  },
})

Clicking on a link inspection will open the inspection results in Nuxt Dev Tools.

Disabling Live Inspections

You can disable live inspections by setting showLiveInspections to false.

nuxt.config.ts
export default defineNuxtConfig({
  linkChecker: {
    showLiveInspections: false,
  },
})