-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
40 lines (40 loc) · 1.16 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-07-18',
devtools: { enabled: true },
modules: [ 'nuxt-icon', '@nuxtjs/tailwindcss', '@nuxt/image', 'nuxt-security' ],
plugins: [ '~/plugins/recaptcha.ts' ],
runtimeConfig: {
public: {
RECAPTCHA_SITEKEY: process.env.RECAPTCHA_SITEKEY
},
private: {
RECAPTCHA_URL: process.env.RECAPTCHA_URL,
RECAPTCHA_SECRETKEY: process.env.RECAPTCHA_SECRETKEY,
SMTP2GO_USER: process.env.SMTP2GO_USER,
SMTP2GO_PASS: process.env.SMTP2GO_PASS
}
},
security: {
headers: {
crossOriginEmbedderPolicy: process.env.NODE_ENV === 'development' ? 'unsafe-none' : 'require-corp',
contentSecurityPolicy: {
'default-src': ["'self'"],
'script-src': [
"'self'",
'https:',
"'unsafe-inline'",
"https://www.google.com",
"https://static.cloudflareinsights.com"
],
'script-src-attr': [
"'self'",
"'unsafe-inline'"
],
'frame-src': [
"https://www.google.com/recaptcha/api2/anchor?"
]
}
},
}
})