I load a third party jQuery plugin into base 6 through bower or npm.
I have included javascript in config.yml , which works fine:
JavaScript:
[...] - "bower_components/path/to/thirdpartyplugin.js"
But such plugins also bring basic css files, which I would probably not copy, but include directly.
So, where and how to enable them for compilation (included) in app.css ? In addition, many plugins bring assets such as .svg or some .png - how can I get the compiler to copy them to the right place in dist ?
source share