-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
38 lines (38 loc) · 1.28 KB
/
nuxt.config.ts
File metadata and controls
38 lines (38 loc) · 1.28 KB
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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
//ssr: false,
// nitro: {
// preset: 'service-worker'
// },
devtools: { enabled: true },
modules: ['@nuxt/content', '@hypernym/nuxt-anime', '@dargmuesli/nuxt-cookie-control'],
cookieControl: {
domain: 'null.mobilex1122.eu',
cookies: {
necessary: [
],
optional: [
{
description: {
en: 'Used for Testing (No data saved)'
},
id: 'test1', // if unset, `getCookieId(cookie)` returns the cookie's slugified name instead, which e.g. is used to fill the state's `enabledCookieIds` list
// use a short cookie id to save bandwidth!
name: {
en: 'Test Cookie 1' // you always have to specify a cookie name (in English)
}
},
{
description: {
en: 'Used for Testing (No data saved)'
},
id: 'test2', // if unset, `getCookieId(cookie)` returns the cookie's slugified name instead, which e.g. is used to fill the state's `enabledCookieIds` list
// use a short cookie id to save bandwidth!
name: {
en: 'Test Cookie 2' // you always have to specify a cookie name (in English)
}
},
],
}
}
})