NUXT (production, extractCSS: true) does not remove inline styles of some Vue packages

0

The styles of some of the plugins (sweet alert, owl carousel) are duplicated inline and in the link tags, despite the inclusion of extractCSS.

How can I put all the packages styles into separate files?

css: [ '~/assets/sass/style.sass', '~/assets/css/style.css', ], build: { vendor: ['axios', '~plugins/vue-swal', '~plugins/vue-owl-carousel'], extractCSS: true },

enter image description here

Артём Иванов

Posted 2019-07-22T13:42:04.187

Reputation: 1

No answers