mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
39 lines
734 B
TypeScript
39 lines
734 B
TypeScript
import { defineNuxtConfig } from 'nuxt'
|
|
import nuxtUI from '../src/module'
|
|
|
|
// https://v3.nuxtjs.org/docs/directory-structure/nuxt.config
|
|
export default defineNuxtConfig({
|
|
meta: {
|
|
title: '@nuxthq/ui',
|
|
meta: [
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1, maximum-scale=1' }
|
|
],
|
|
link: [
|
|
{ rel: 'stylesheet', href: 'https://rsms.me/inter/inter.css' }
|
|
]
|
|
},
|
|
modules: [
|
|
nuxtUI
|
|
],
|
|
components: {
|
|
global: true
|
|
},
|
|
ui: {
|
|
colors: {
|
|
primary: 'blue',
|
|
gray: 'zinc'
|
|
},
|
|
preset: {
|
|
},
|
|
tailwindcss: {
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['"Inter var", sans-serif']
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|