-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
72 lines (72 loc) · 1.76 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
head: {
link: [
{
rel: 'icon',
type: 'image/svg+xml',
href: '/favicon.svg',
}
],
meta: [
{
property: 'og:title',
content: 'Выставка WBCE 2025'
},
{
property: 'og:site_name',
content: 'Wiren Board WBCE'
},
{
property: 'description',
content: 'Выставка и конференция по домашней и промышленной автоматизации'
},
{
property: 'og:description',
content: 'Выставка и конференция по домашней и промышленной автоматизации'
},
{
property: 'keywords',
content: 'Конференция умный дом, выставка автоматизация, выставка промышленной автоматизации'
},
{
property: 'og:image',
content: '/og_image.png'
},
]
}
},
css: [
'~/assets/css/variables.css',
'~/assets/css/globals.css',
],
postcss: {
plugins: {
autoprefixer: {
overrideBrowserslist: ['last 4 versions', 'iOS >= 8']
}
}
},
modules: [
'@nuxtjs/google-fonts',
'vue3-carousel-nuxt',
'vue-yandex-maps/nuxt',
'yandex-metrika-module-nuxt3',
],
googleFonts: {
families: {
Ubuntu: true,
},
preload: true,
},
yandexMaps: {
apikey: '1614c77e-4da5-4e31-b9e1-9dbaf4d4c80e',
},
yandexMetrika: {
id: '99316061',
trackLinks: true,
accurateTrackBounce: true,
webvisor: true,
}
})