mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
39 lines
608 B
TypeScript
39 lines
608 B
TypeScript
import { createResolver } from '@nuxt/kit'
|
|
|
|
const { resolve } = createResolver(import.meta.url)
|
|
|
|
export default defineNuxtConfig({
|
|
modules: [
|
|
'../src/module',
|
|
'@nuxthub/core'
|
|
],
|
|
|
|
devtools: {
|
|
enabled: true
|
|
},
|
|
|
|
ui: {
|
|
fonts: false
|
|
},
|
|
|
|
future: {
|
|
compatibilityVersion: 4
|
|
},
|
|
|
|
compatibilityDate: '2024-07-09',
|
|
|
|
// @ts-expect-error - `nuxt-component-meta` is used as CLI
|
|
componentMeta: {
|
|
exclude: [
|
|
resolve('./app/components')
|
|
],
|
|
metaFields: {
|
|
type: false,
|
|
props: true,
|
|
slots: true,
|
|
events: false,
|
|
exposed: false
|
|
}
|
|
}
|
|
})
|