Remove @nuxt/ui dependency to fix build issues

This commit is contained in:
2025-10-01 22:18:06 -04:00
parent ec053fc538
commit 22f7c6f8ad
3 changed files with 7 additions and 4 deletions

View File

@@ -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: [],