:::info
This bundle is only supported on Pimcore 11.
:::
To install Static Resolver Bundle, follow the two steps below:
- Install the required dependencies:
composer require pimcore/static-resolver-bundle
- Make sure the bundle is enabled in the
config/bundles.php
file. The following lines should be added:
use Pimcore\Bundle\StaticResolverBundle\PimcoreStaticResolverBundle;
// ...
return [
// ...
PimcoreStaticResolverBundle::class => ['all' => true],
// ...
];