-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
35 lines (35 loc) · 760 Bytes
/
nuxt.config.ts
File metadata and controls
35 lines (35 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-11-01',
css: [
'~/assets/css/main.css',
],
site: {
url: 'https://owlnai.com',
name: 'Owlnai',
description: 'Developer, writer, and open source enthusiast.',
defaultLocale: 'en', // not needed if you have @nuxtjs/i18n installed
},
modules: [
'@nuxthub/core',
'@nuxt/content',
'@nuxtjs/color-mode',
'@unocss/nuxt',
'@nuxt/fonts',
'@nuxtjs/seo',
'@nuxt/image',
],
colorMode: {
classSuffix: '',
preference: 'system',
fallback: 'light'
},
nitro: {
experimental: {
openAPI: true
}
},
app: {
pageTransition: { name: 'page', mode: 'out-in' }
}
})