From 22f7c6f8ad5388843e8ea1e5da9d6de47b60a8cd Mon Sep 17 00:00:00 2001 From: Joshua Ryder Date: Wed, 1 Oct 2025 22:18:06 -0400 Subject: [PATCH] Remove @nuxt/ui dependency to fix build issues --- nuxt.config.ts | 3 +-- package.json | 1 - tailwind.config.js | 7 ++++++- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 859a2a3..0f449a8 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -4,8 +4,7 @@ export default defineNuxtConfig({ devtools: { enabled: true }, modules: [ - '@nuxtjs/tailwindcss', - '@nuxt/ui' + '@nuxtjs/tailwindcss' ], app: { diff --git a/package.json b/package.json index 4532180..83eefa8 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,6 @@ "postinstall": "nuxt prepare" }, "dependencies": { - "@nuxt/ui": "^2.18.4", "better-sqlite3": "^11.3.0", "nuxt": "^3.13.2", "qrcode": "^1.5.4", diff --git a/tailwind.config.js b/tailwind.config.js index 360846b..05620ce 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,3 +1,5 @@ +import defaultTheme from 'tailwindcss/defaultTheme' + /** @type {import('tailwindcss').Config} */ export default { content: [ @@ -10,8 +12,11 @@ export default { theme: { extend: { fontFamily: { - sans: ['Inter', 'sans-serif'], + sans: ['Inter', ...defaultTheme.fontFamily.sans], }, + colors: { + // Add any custom colors here if needed + } }, }, plugins: [],