<?phpnamespace ProductBundle;use Pimcore\Extension\Bundle\AbstractPimcoreBundle;class ProductBundle extends AbstractPimcoreBundle{ public function getJsPaths(): array { return [ '/bundles/product/js/pimcore/startup.js', ]; } public function getCssPaths(): array { return [ '/bundles/product/css/pimcore/style.css', ]; }}