mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
34 lines
573 B
TypeScript
34 lines
573 B
TypeScript
import { createResolver } from '@nuxt/kit'
|
|
|
|
const { resolve } = createResolver(import.meta.url)
|
|
|
|
export default defineNuxtConfig({
|
|
|
|
modules: ['../src/module'],
|
|
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
|
|
}
|
|
}
|
|
})
|