<?phpnamespace App\EventListener;use Pimcore\Event\BundleManager\PathsEvent;class BundleManagerEvents{ public function addJSFiles(PathsEvent $event): void { $event->setPaths( array_merge( $event->getPaths(), [ '/custom.js', ] ) ); } public function addCSSFiles(PathsEvent $event): void { $event->setPaths( array_merge( $event->getPaths(), [ '/custom.css', ] ) ); }}