From a7fff187d4b112b85b927908a63b16314003393d Mon Sep 17 00:00:00 2001 From: Salem Yaslem Date: Mon, 15 May 2023 16:27:39 +0300 Subject: [PATCH] try to fix css issue --- nuxt.config.ts | 1 - plugins/vuetify.ts | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index af3524d..7a0b63f 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -11,7 +11,6 @@ export default defineNuxtConfig({ build: { transpile: ['vuetify'], }, - // disable vite externals and ssr vite: { optimizeDeps: { diff --git a/plugins/vuetify.ts b/plugins/vuetify.ts index 33811d3..62e9f3d 100644 --- a/plugins/vuetify.ts +++ b/plugins/vuetify.ts @@ -4,7 +4,7 @@ import * as directives from 'vuetify/directives' export default defineNuxtPlugin(nuxtApp => { const vuetify = createVuetify({ - ssr: false, + ssr: true, components, directives })