---
title: "Troubleshooting Nuxt Site Config"
description: "Debug Nuxt Site Config issues using DevTools, config options, and minimal reproductions."
canonical_url: "https://nuxtseo.com/docs/site-config/getting-started/troubleshooting"
last_updated: "2026-07-25T19:15:11.620Z"
---

## Debugging

The best tool for debugging is the Nuxt DevTools integration with Nuxt Site Config. The easiest way to debug is to open your DevTools and navigate to the Site Config tab, which will show you the current site config.

If you'd like to debug outside of development, you will need to enable the debug mode.

```ts [nuxt.config.ts]
export default defineNuxtConfig({
  site: {
    debug: true,
  },
})
```

With debug mode enabled, visit the endpoint `/__site-config__/debug.json` to see the current site config debug output at runtime. The build step also generates a static file at the same path for the build time site config debug output.

## Submitting an Issue

When submitting an issue, it's important to provide as much information as possible.

The easiest way to do this is to create a minimal reproduction using the [StackBlitz](https://stackblitz.com) playgrounds:

- [Basic](https://stackblitz.com/edit/nuxt-starter-zycxux?file=public%2F_robots.txt)

## Debugging Tools

- [Meta Tag Checker](/tools/meta-tag-checker) - Verify site URL appears correctly in meta tags
