Reputation: 468
I have included css files in to nuxtJs config file, so i want to minify them but i do not want to extract them to external css file.
Is there any way of doing this?.
/*
** Global CSS
*/
css: [
"~/assets/css/tailwind.css",
"~/assets/scss/styles.scss",
"~/static/js/plugins/slick/slick.css",
"~/static/js/plugins/fotorama/fotorama.css",
"swiper/dist/css/swiper.css"
],
build: {
extractCSS: false,
}
Upvotes: 1
Views: 2916