Skip to content
Discussion options

You must be logged in to vote

You can put them both in vuetify/settings:

@/styles/vuetify-settings.scss

@forward 'vuetify/settings' with (
  $color-pack: false,
  $layers: true
);

@/styles/vuetify-css.scss

@use './vuetify-settings';
@use 'vuetify';

@/main.ts

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 vuetify-css.scss if you aren't doing anything else with it, just replace that with import 'vuetify/styles'

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by bhbghghbgb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants