diff --git a/app.config.ts b/app.config.ts index 17218a8..042ee58 100644 --- a/app.config.ts +++ b/app.config.ts @@ -1,27 +1,27 @@ export default defineAppConfig({ - ui: { - primary: 'indigo', - gray: 'neutral', - strategy: 'merge', - button: { - icon: { - loading: 'animate-none', - }, - default: { - loadingIcon: 'i-svg-spinners-180-ring-with-bg' - } - }, - notifications: { - position: 'top-0 bottom-auto' - }, - horizontalNavigation: { - container: 'gap-2', - base: 'px-3 py-4', - after: 'after:hidden', - active: 'before:bg-neutral-600 hover:before:bg-neutral-600 dark:before:bg-neutral-800 dark:hover:before:bg-neutral-800 text-neutral-50 dark:text-neutral-300', - icon: { - active: 'text-neutral-50 dark:text-neutral-300', - } - }, - } + ui: { + primary: 'indigo', + gray: 'neutral', + strategy: 'merge', + button: { + icon: { + loading: 'animate-none', + }, + default: { + loadingIcon: 'i-svg-spinners-180-ring-with-bg', + }, + }, + notifications: { + position: 'top-0 bottom-auto', + }, + horizontalNavigation: { + container: 'gap-2', + base: 'px-3 py-4', + after: 'after:hidden', + active: 'before:bg-neutral-600 hover:before:bg-neutral-600 dark:before:bg-neutral-800 dark:hover:before:bg-neutral-800 text-neutral-50 dark:text-neutral-300', + icon: { + active: 'text-neutral-50 dark:text-neutral-300', + }, + }, + }, }) diff --git a/nuxt.config.ts b/nuxt.config.ts index bde9425..30017dc 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -19,6 +19,11 @@ export default defineNuxtConfig({ '@nuxt/image', ], + icon: { + provider: 'iconify', + serverBundle: false, + }, + colorMode: { preference: 'light', },