I've pulled in this Vue music player component, and I would like to know if its possible to remove the styles it adds to the <head/>
of my doc and move them to a singular css
file.
Here is the importation of the component in one of my components:
import Aplayer from 'vue-aplayer'
export default {
components: {
Aplayer
}
}
Here's a shot of what it injects into my <head/>
:
As you can see, thats a ton of un-cached styling. How do I take the scoped styles of a remote package and output them to a proprietary css
file using Webpack
or native Vue
capabilities?