Exclude css from a Concrete5.7 addon

Permalink
Hello Concrete5 members !

Is it possible to exclude a css file from a concrete5.7 addon?
Something like the include option from the page_theme.
public function registerAssets()
    {
        $this->providesAsset('javascript', 'bootstrap/*');
        $this->providesAsset('css', 'bootstrap/*');
    }

nesoor
 
WillemAnchor replied on at Permalink Reply
WillemAnchor
You could try something like:
$this->provideAsset('blocks/addonblock');


http://documentation.concrete5.org/tutorials/how-re-use-assets-prov...