-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
85 lines (85 loc) · 2.08 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
81
82
83
84
85
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
head: {
title: 'YADZ — Yet Another DayZ Launcher',
meta: [
{
charset: 'utf-8'
},
{
name: 'viewport',
content: 'width=device-width, height=device-height, user-scalable=no, initial-scale=1'
},
{
hid: 'description',
name: 'description',
content: 'Simple app for launching DayZ. Coming soon.'
},
{
hid: 'og:type', property: 'og:type', content: 'website'
},
{
hid: 'og:title', property: 'og:title', content: 'YADZ — Yet Another DayZ Launcher'
},
{
hid: 'og:description',
property: 'og:description',
content: 'Simple app for launching DayZ. Coming soon.'
},
{
hid: 'og:image',
property: 'og:image',
content: 'https://yadz.app/share.png'
},
{
hid: 'og:url', property: 'og:url', content: 'https://yadz.app/'
},
{
hid: 'twitter:card',
name: 'twitter:card',
content: 'summary_large_image'
},
{
hid: 'twitter:title', name: 'twitter:title', content: 'YADZ — Yet Another DayZ Launcher'
},
{
hid: 'twitter:description',
name: 'twitter:description',
content: 'Simple app for launching DayZ. Coming soon.'
},
{
hid: 'twitter:image',
name: 'twitter:image',
content: 'https://yadz.app/share.png'
},
],
link: [
{
rel: 'icon',
href: '/favicon.svg'
}
],
script: [
{
src: 'https://www.googletagmanager.com/gtag/js?id=G-FTTMEJ49JT'
}
],
noscript: [
{
children: 'Javascript is required'
}
]
}
},
css: [
'@/assets/css/reset.css',
'@/assets/css/main.scss'
],
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
})