From 3b2ded0b7df357d2fae58625530eeba7fe5756fc Mon Sep 17 00:00:00 2001 From: Izan Gil <66965250+SrIzan10@users.noreply.github.com> Date: Wed, 14 Jan 2026 22:58:12 +0100 Subject: [PATCH] fix: default shadcn theme --- nuxt.config.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 3a4ddf3..10b86f5 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -1,6 +1,5 @@ import tailwindcss from "@tailwindcss/vite"; import { shadcn } from "@clerk/themes"; -import { esES } from "@clerk/localizations"; // https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ compatibilityDate: "2025-07-15", @@ -62,5 +61,9 @@ export default defineNuxtConfig({ }, }, // moved clerk config to clerk-locale.client.ts - clerk: {}, + clerk: { + appearance: { + theme: shadcn, + }, + }, });