How to use sass variable of vuetify/settings, and vuetify at once? #21511
-
Beta Was this translation helpful? Give feedback.
Answered by
KaelWD
Jun 2, 2025
Replies: 1 comment
-
|
You can put them both in vuetify/settings:
@forward 'vuetify/settings' with (
$color-pack: false,
$layers: true
);
@use './vuetify-settings';
@use 'vuetify';
import { createApp } from 'vue'
import '@/styles/layers.css'
import '@/styles/vuetify-css.scss'
import App from '@/App.vue'
const app = createApp(App)
app.use(vuetify)
app.mount('#app')And you don't even need |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
bhbghghbgb
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment






You can put them both in vuetify/settings:
@/styles/vuetify-settings.scss@/styles/vuetify-css.scss@/main.tsAnd you don't even need
vuetify-css.scssif you aren't doing anything else with it, just replace that withimport 'vuetify/styles'