Since Nuxt SEO installs and enables modules for you, you may run into a situation where you want to disable a module.
The modules have these config keys:
nuxt-og-image - ogImage@nuxtjs/sitemap - sitemap@nuxtjs/robots - robotsnuxt-seo-utils - seonuxt-schema-org - schemaOrgnuxt-link-checker - linkCheckerYou can disable any of these modules by setting the module's enabled value to false in your nuxt.config.ts file.
export default defineNuxtConfig({
ogImage: {
enabled: false
},
sitemap: {
enabled: false
},
robots: {
enabled: false
},
seo: { // seo utils
enabled: false
},
schemaOrg: {
enabled: false
},
linkChecker: {
enabled: false
}
})
When submitting a GitHub issue, a minimal reproduction helps maintainers debug your problem quickly.
Use one of these StackBlitz playgrounds as a starting point:
Once you've reproduced the issue, fork the StackBlitz and include the link in your GitHub issue.