From ad0a668ac8616206c1c906233375fc08948b0070 Mon Sep 17 00:00:00 2001 From: Mamalizz Date: Sun, 15 Dec 2024 22:46:19 +0330 Subject: [PATCH] new changes --- frontend/nuxt.config.ts | 46 +++++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 22 deletions(-) diff --git a/frontend/nuxt.config.ts b/frontend/nuxt.config.ts index 9fee81b..d599fba 100644 --- a/frontend/nuxt.config.ts +++ b/frontend/nuxt.config.ts @@ -3,22 +3,20 @@ export default defineNuxtConfig({ compatibilityDate: "2024-11-01", ssr: false, devtools: { enabled: false }, - css: [ - "~/assets/css/tailwind.css", - ], + css: ["~/assets/css/tailwind.css", "swiper/css"], postcss: { plugins: { "@tailwindcss/postcss": {}, - autoprefixer: {} - } + autoprefixer: {}, + }, }, components: [ { path: "~/components", - pathPrefix: false - } + pathPrefix: false, + }, ], icon: { @@ -26,20 +24,24 @@ export default defineNuxtConfig({ customCollections: [ { prefix: "ci", - dir: "./public/icons" - } - ] + dir: "./public/icons", + }, + ], }, - modules: [[ - "@nuxtjs/google-fonts", - { - families: { - "DM Sans": "100..900", - Inter: "100..900", - download: true, - inject: false - } - } - ], "@nuxt/icon", "reka-ui/nuxt"] -}); \ No newline at end of file + modules: [ + [ + "@nuxtjs/google-fonts", + { + families: { + "DM Sans": "100..900", + Inter: "100..900", + download: true, + inject: false, + }, + }, + ], + "@nuxt/icon", + "reka-ui/nuxt", + ], +});