Nuxt Vuetifi, переопределение стилей scss

217
17 июля 2021, 17:40

В продакшен версии мои стили перебиваются стилями vuetify.

nuxt.conf:

import colors from 'vuetify/es5/util/colors'
export default {
  mode: 'universal',
  /*
  ** Headers of the page
  */
  head: {
    titleTemplate: 'runCRM -  программа для курьерской службы',
    meta: [
      { charset: 'utf-8' },
      { name: 'viewport', content: 'width=device-width, initial-scale=1' },
      { hid: 'description', name: 'description', content: 'Курьерская программа доставки и приложение для курьеров' }
    ],
    link: [
      { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
    ]
  },
  /*
  ** Customize the progress-bar color
  */
  loading: { color: '#fff' },
  /*
  ** Global CSS
  */
  css: [
    '~/assets/variables.scss',
    '~/assets/main.scss'
  ],
  /*
  ** Plugins to load before mounting the App
  */
  plugins: [
  ],
  /*
  ** Nuxt.js dev-modules
  */
  buildModules: [
    // Doc: https://github.com/nuxt-community/eslint-module
    '@nuxtjs/eslint-module',
    '@nuxtjs/vuetify',
    '@nuxtjs/proxy'
  ],
  /*
  ** Nuxt.js modules
  */
  modules: [
    // Doc: https://axios.nuxtjs.org/usage
    '@nuxtjs/axios',
    '@nuxtjs/pwa'
  ],
  proxy: {
    // Simple proxy
    '/api': 'http://127.0.0.1:3333'
  },
  /*
  ** Axios module configuration
  ** See https://axios.nuxtjs.org/options
  */
  axios: {
    prefix: '/api/v1',
    proxy: true
  },
  /*
  ** vuetify module configuration
  ** https://github.com/nuxt-community/vuetify-module
  */
  vuetify: {
    customVariables: ['~/assets/variables.scss'],
    theme: {
      dark: true,
      themes: {
        light: {
          primary: colors.purple,
          secondary: colors.grey.darken1,
          accent: colors.shades.black,
          error: colors.red.accent3
        }
      }
    }
  },
  /*
  ** Build configuration
  */
  build: {
    /*
    ** You can extend webpack config here
    */
    extractCSS: true,
    filenames: {
      css: ({ isDev }) => isDev ? '[name].css' : '[name].[contenthash].css'
    },
    extend (config, ctx) {
    }
  }
}
READ ALSO
document.querySelectorAll() в IE8

document.querySelectorAll() в IE8

Есть возможность заставить работать documentquerySelectorAll('

251
eslint проверяет json файлы

eslint проверяет json файлы

Прописал команду в packagejson:

184
Как послать POST запрос?

Как послать POST запрос?

Я делаю POST запрос в delphi URL + Body(JSON Object) и все работает

118
Как отфильтровать таблицу в jsp

Как отфильтровать таблицу в jsp

Пытаюсь настроить фильтр на jsp странице для таблицыНашел вот такой вариант: https://daruse

120