Installation
info
This bundle is only supported on Pimcore Core Framework 11.
Installation
To install and activate the Light Theme for Admin UI, follow the three steps below:
- Install the required dependencies:
composer require pimcore/admin-ui-classic-light-theme-bundle
- Make sure the bundle is enabled in the
config/bundles.php
file. The following lines should be added:
// ...
return [
// ...
Pimcore\Bundle\AdminUiClassicLightThemeBundle\PimcoreAdminUiClassicLightThemeBundle::class => ['all' => true],
// ...
];
- Install assets:
# eventually add --symlink to symlink resources instead of copying them
bin/console assets:install
info
As soon as the bundle is enabled, the light theme is active. No further configuration needed.