Skip to content

includedIntegrations

includedIntegrations is an object that is used to determine which Astro Integrations should be included in the studioCMS. Currently there are three Integrations that can be included: useAstroRobots, astroRobotsConfig, and useInoxSitemap.

Usage

astro.config.mjs
studioCMS({
includedIntegrations: {
useAstroRobots: true,
astroRobotsConfig: {},
useInoxSitemap: true,
},
}),

useAstroRobots

  • Type: boolean | undefined
  • Default: true

Allows the user to enable/disable the use of the StudioCMS Custom astro-robots-txt Integration.

astroRobotsConfig

  • Type: RobotsConfig{} | undefined{}

Allows you to modify the default behaviour of the this Integration. For more information on this Integration please visit the Astro Robots Integration.

useInoxSitemap

TEMPORARILY DISABLED

If you would like to still use the Inox-tools Sitemap Plugin, you can manually add it to your project’s Integrations.

  • Type: boolean | undefined
  • Default: true

Allows the user to enable/disable the use of the Inox-tools Sitemap Plugin. For more information on this Integration please visit the Inox-tools Sitemap Integration.