mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
31 lines
560 B
TypeScript
31 lines
560 B
TypeScript
import defaultTheme from 'tailwindcss/defaultTheme'
|
|
import nuxtUI from '../src/module'
|
|
|
|
// https://v3.nuxtjs.org/docs/directory-structure/nuxt.config
|
|
export default defineNuxtConfig({
|
|
modules: [
|
|
nuxtUI
|
|
],
|
|
components: {
|
|
global: true
|
|
},
|
|
ui: {
|
|
colors: {
|
|
primary: 'blue',
|
|
gray: 'zinc'
|
|
},
|
|
preset: {
|
|
},
|
|
icons: ['heroicons', 'mdi'],
|
|
tailwindcss: {
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter var', ...defaultTheme.fontFamily.sans]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|