-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
nuxt.config.ts
80 lines (79 loc) · 1.54 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
const isProd = process.env.NODE_ENV === 'production'
export default defineNuxtConfig({
extends: ['@nuxt/ui-pro'],
modules: [
'@nuxt/eslint',
'@nuxthub/core',
'nuxt-auth-utils',
'@nuxt/ui',
'nuxt-security',
],
devtools: { enabled: true },
colorMode: {
preference: 'system',
},
runtimeConfig: {
app: {
name: '',
url: '',
},
mail: {
key: '',
from: '',
},
},
routeRules: {
'/api/me': {
security: {
rateLimiter: {
headers: false,
interval: 60 * 1000,
tokensPerInterval: 6,
},
},
},
'/api/_hub/**': {
csurf: false,
},
'/**': {
security: {
rateLimiter: false,
},
},
},
future: {
compatibilityVersion: 4,
},
compatibilityDate: '2024-04-03',
hub: {
database: true,
blob: true,
kv: true,
},
csurf: {
methodsToProtect: ['POST', 'PUT', 'PATCH', 'DELETE'],
},
eslint: {
config: {
stylistic: 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,
},
},
})