mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
19 lines
361 B
TypeScript
19 lines
361 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
app: {
|
|
head: {
|
|
bodyAttrs: {
|
|
class: 'antialiased font-sans text-gray-700 dark:text-gray-200 bg-white dark:bg-gray-900'
|
|
}
|
|
}
|
|
},
|
|
|
|
modules: ['../src/module'],
|
|
|
|
future: {
|
|
compatibilityVersion: 4
|
|
},
|
|
|
|
compatibilityDate: '2024-07-09'
|
|
})
|