Configuration

Target group: Developers, Integrators

Site sets

Include the site set "SEO Sitemap", typo3/seo-sitemap via the site set in the site configuration or the custom site package's site set.

Settings for the included set can be adjusted in the Settings editor.

Add the site set "SEO Sitemap"

This will change your site configuration file as follows:

config/sites/my-site/config.yaml (diff)
  base: 'https://example.com/'
  rootPageId: 1
  dependencies:
    - typo3/fluid-styled-content-css
+   - typo3/seo-sitemap
Copied!

If your site has a custom site package, you can also add the "SEO Sitemap" set as dependency in your site's configuration:

EXT:my_site_package/Configuration/Sets/MySite/config.yaml (diff)
name: my-vendor/my-site-package
 label: My Site Package Set
 settings:
   website:
     background:
       color: '#386492'
 dependencies:
   - typo3/fluid-styled-content-css
+  - typo3/seo-sitemap
Copied!