From 127ec26fc3aa228bdf8e98f0f9b662d526610226 Mon Sep 17 00:00:00 2001 From: Yizack Rangel Date: Sun, 22 Sep 2024 12:42:14 -0500 Subject: [PATCH] chore: update nuxt config --- .config/nuxt.ts | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.config/nuxt.ts b/.config/nuxt.ts index 17c7042..5e4775a 100644 --- a/.config/nuxt.ts +++ b/.config/nuxt.ts @@ -53,7 +53,11 @@ export default defineNuxtConfig({ "@nuxthub/core" ], hub: { database: true, blob: true }, - icon: { mode: "svg", serverBundle: "remote" }, + icon: { + mode: "svg", + serverBundle: "remote", + clientBundle: { scan: true, sizeLimitKb: 2048 } + }, eslint: { config: { autoInit: false, @@ -173,7 +177,10 @@ export default defineNuxtConfig({ vite: { css: { preprocessorOptions: { - scss: { quietDeps: true } + scss: { + api: "modern-compiler", + silenceDeprecations: ["mixed-decls", "color-functions"] + } } } }