12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
devtools: { enabled: true },
|
|
modules: [
|
|
'@nuxt/ui',
|
|
'radix-vue/nuxt'
|
|
],
|
|
colorMode: {
|
|
preference: 'dark'
|
|
}
|
|
})
|