-
Notifications
You must be signed in to change notification settings - Fork 3
/
nuxt.config.ts
101 lines (100 loc) · 2.03 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
const isProd = process.env.NODE_ENV === 'production'
export default defineNuxtConfig({
compatibilityDate: '2024-04-03',
extends: ['@nuxt/ui-pro'],
modules: [
'@nuxt/eslint',
'@nuxthub/core',
'nuxt-auth-utils',
'@nuxt/ui',
'nuxt-security',
'@vueuse/nuxt',
'@nuxt/content',
],
routeRules: {
'/': {
prerender: false,
redirect: '/healthcheck',
},
'/healthcheck': {
prerender: false,
},
'/api/_hub/**': {
csurf: false,
security: {
rateLimiter: false,
corsHandler: false,
},
},
},
runtimeConfig: {
app: {
name: 'Le Vent Tourne',
url: '',
},
enable: {
oauth: process.env.NUXT_ENABLE_OAUTH === 'true',
},
ventourne: {
token: process.env.NUXT_VENTOURNE_TOKEN ?? '',
github: {
usernames: process.env.NUXT_VENTOURNE_GITHUB_USERS ?? '',
},
},
},
nitro: {
experimental: {
openAPI: true,
},
},
hub: {
database: true,
blob: true,
kv: true,
cache: true,
browser: true,
},
security: {
csrf: true,
rateLimiter: {
driver: {
name: 'cloudflare-kv-binding',
options: {
binding: 'KV',
},
},
},
headers: {
contentSecurityPolicy: {
'img-src': ['\'self\'', 'data:', 'https://avatars.githubusercontent.com', 'https://static-cdn.jtvnw.net/'],
'script-src': ['\'self\'', 'https', '\'nonce-{{nonce}}\'', 'https://static.cloudflareinsights.com'],
},
crossOriginEmbedderPolicy: isProd ? 'credentialless' : false,
},
},
csurf: {
methodsToProtect: ['POST', 'PUT', 'PATCH', 'DELETE'],
},
colorMode: {
preference: 'system',
},
eslint: {
config: {
stylistic: true,
},
},
content: {
// /docs/README.md is used via nuxt-content and via github
sources: {
docs: {
prefix: '/docs',
driver: 'fs',
base: 'docs',
},
},
},
future: {
compatibilityVersion: 4,
},
devtools: { enabled: true },
})