-
Notifications
You must be signed in to change notification settings - Fork 3
/
nuxt.config.ts
80 lines (72 loc) · 1.85 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
export default defineNuxtConfig({
extends: ['@classement-des-associations/website-theme'],
// experimental: {
// watcher: 'parcel'
// },
devtools: true,
modules: [
'@vueuse/nuxt',
'nuxt-clarity-analytics',
'@nuxt/devtools'
],
runtimeConfig: {
public: {
// newsletterSubscriptionLink: 'https://example.com',
concoursRegistrationLink: 'https://example.com',
tourAssoRegistrationLink: 'https://example.com',
writeForClassement: 'https://example.com',
meetupLink: 'https://example.com',
bookAnAppointmentLink: 'https://example.com',
siteUrl: 'https://le-classement.fr/',
siteName: 'Le Classement des Associations',
siteDescription:
'L\'aventure humaine de référence qui rassemble, promeut et valorise la vie associative étudiante.',
language: 'fr-FR',
titleSeparator: '·'
}
},
content: {
documentDriven: {
host: 'https://le-classement.fr',
surround: false
},
defaultLocale: 'fr',
navigation: {
fields: ['for', 'dropdown']
}
},
app: {
pageTransition: { name: 'page', mode: 'out-in' },
layoutTransition: { name: 'layout', mode: 'out-in' },
head: {
link: [
{ rel: 'icon', type: 'image/png', href: '/favicon.png' },
{ rel: 'author', type: 'text/plain', href: '/humans.txt' }
],
meta: [
{
name: 'google-site-verification',
content: 'TdbVQQq00musVnOqyiFS2ulrIvi29dUNAhPXtGXWags'
}
]
}
},
nitro: {
prerender: {
routes: [
'/',
'/design-kit',
'/le-pense-bete',
'/associations',
// '/newsletter',
// '/newsletter/merci',
'/404',
'/classement/palmares'
],
crawlLinks: true
}
},
routeRules: {
// '/newsletter/merci': { index: false },
}
})