This plugin suggests installing the Sylius sitemap plugin providing a sitemap for vendors.
-
Run
composer require stefandoorn/sitemap-plugin ^2.0@alpha
-
Enable the plugin in bundles.php
<?php
// config/bundles.php
return [
// ...
SitemapPlugin\SitemapPlugin::class => ['all' => true],
];
- Import the providers
# config/services.yaml
imports:
# ...
- { resource: "@OdiseoSyliusVendorPlugin/Resources/config/services/sitemap.yaml" }
Follow the original SyliusSitemapPlugin documentation.