Я пытаюсь настроить nuxt.config.js так, чтобы vendor и все другие стили были разделены на блоки vendors.css и app.css.Вот как теперь выглядит мой nuxt.config.js:
mode: 'universal',
head: {
title: process.env.npm_package_name || '',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{
hid: 'description',
name: 'description',
content: process.env.npm_package_description || ''
}
],
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }]
},
loading: { color: '#fff' },
css: [
'@/assets/style/vendors.scss',
'@/assets/style/app.scss'
],
plugins: ['@/plugins/buefy'],
buildModules: [
'@nuxtjs/eslint-module'
],
modules: [
'@nuxtjs/axios',
'@nuxtjs/style-resources'
],
axios: {},
build: {
styleResources: {
scss: './assets/style/utilities.scss'
},
extractCSS: true,
extend(config, ctx) {}
}
}