-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
101 lines (88 loc) · 1.78 KB
/
nuxt.config.ts
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import type { LocaleObject } from '@nuxtjs/i18n'
import locales from './locales'
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-09-28',
future: { compatibilityVersion: 4 },
devtools: { enabled: false },
devServer: {
port: 5000
},
modules: [
'@nuxtjs/tailwindcss',
'@nuxtjs/color-mode',
'@nuxt/eslint',
'@nuxtjs/i18n',
'nuxt-gtag',
'@nuxtjs/google-fonts',
'@nuxtjs/seo',
'nuxt-auth-utils',
'@nuxthub/core'
],
hub: {
database: true
},
site: {
url: '',
name: 'NuxtStarter',
description: ''
},
schemaOrg: {
identity: {
type: 'Organization',
name: 'NuxtStarter',
url: '',
logo: '',
founder: {
type: 'Person',
name: 'dongnaebi',
sameAs: ['https://twitter.com/dongnaebi', 'https://github.com/dongnaebi']
}
}
},
colorMode: {
classSuffix: '',
preference: 'dark',
fallback: 'dark'
},
googleFonts: {
families: {
Inter: [300, 500, 700]
}
},
gtag: {
id: ''
},
eslint: {
config: {
stylistic: {
quotes: 'single',
commaDangle: 'never'
}
}
},
i18n: {
baseUrl: '',
strategy: 'prefix_except_default',
defaultLocale: 'en',
detectBrowserLanguage: {
useCookie: true,
cookieKey: 'lang',
cookieCrossOrigin: true
},
lazy: true,
langDir: '../locales',
locales: locales as LocaleObject[]
},
runtimeConfig: {
public: {
googleAuth: Boolean(process.env.GOOGLE_AUTH || (process.env.NUXT_OAUTH_GOOGLE_CLIENT_ID && process.env.NUXT_OAUTH_GOOGLE_CLIENT_SECRET))
}
},
nitro: {
// preset: 'cloudflare_pages'
},
routeRules: {
// '/': { prerender: true }
}
})