-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
127 lines (120 loc) · 3.55 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
const meta = {
title: 'Norbergfestival',
description: 'Norbergfestival is a 24-year running festival, held on the abandoned iron mine site of Mimerlaven in Norberg, Sweden. A growing group of artists present contemporary music, performances and interdisciplinary works. We make use of what the site provides, and we sleep on the ground. We extract what we produce and leave the mine as it was retired in 1981.',
image: 'https://images.prismic.io/norbergfestival-2023/3fdd4f71-a01f-400f-84fa-ae958696a0a3_332976138_1326849398099883_926559151918573035_n.jpeg?auto=compress,format'
}
export default defineNuxtConfig({
app: {
head: {
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1, user-scalable=no',
htmlAttrs: { lang: 'en' },
link: [{ rel: 'icon', type: 'image/png', href: '/star.png' }],
// meta: [
// {
// hid: 'description',
// name: 'description',
// content: meta.description
// },
// {
// hid: 'image',
// name: 'image',
// content: meta.image
// },
// {
// 'name': 'twitter:card',
// 'vmid': 'twitter:card',
// 'content': 'summary'
// }, {
// 'name': 'twitter:title',
// 'vmid': 'twitter:title',
// 'content': meta.title
// }, {
// 'name': 'twitter:description',
// 'vmid': 'twitter:description',
// 'content': meta.description
// }, {
// 'name': 'twitter:site',
// 'vmid': 'twitter:site',
// 'content': '@norbergfestival'
// }, {
// 'name': 'twitter:creator',
// 'vmid': 'twitter:creator',
// 'content': '@norbergfestival'
// }, {
// 'name': 'twitter:image:src',
// 'vmid': 'twitter:image:src',
// 'content': meta.image
// }, {
// 'name': 'og:title',
// 'vmid': 'og:title',
// 'content': meta.title
// }, {
// 'name': 'og:description',
// 'vmid': 'og:description',
// 'content': meta.description
// }, {
// 'name': 'og:image',
// 'vmid': 'og:image',
// 'content': meta.image
// }, {
// 'name': 'og:url',
// 'vmid': 'og:url',
// 'content': 'https://www.norbergfestival.com/'
// }, {
// 'name': 'og:site_name',
// 'vmid': 'og:site_name',
// 'content': meta.title
// }, {
// 'name': 'fb:admins',
// 'vmid': 'fb:admins',
// 'content': '120018101368569'
// }, {
// 'name': 'og:type',
// 'vmid': 'og:type',
// 'content': 'website'
// },
// ]
},
},
css: [
"@/assets/fonts/fonts.css",
"@/assets/sass/main.sass"
],
modules: [
'@pinia/nuxt',
'@nuxtjs/prismic',
'@nuxtjs/tailwindcss',
'@nuxtjs/device',
'@nuxtjs/robots',
'@nuxt/image-edge',
'nuxt-simple-sitemap',
// 'nuxt-lodash',
// 'nuxt-seo-kit',
'@morev/vue-transitions/nuxt',
'nuxt-og-image',
// 'nuxt-swiper'
// 'nuxt-purgecss',
],
image: {
provider: 'prismic',
prismic: {},
},
prismic: {
endpoint: 'norbergfestival-2023',
toolbar: false,
preview: false,
},
runtimeConfig: {
public: {
siteUrl: 'https://norbergfestival.com/',
siteName: 'Norbergfestival 2023',
siteDescription: '6–8 July',
language: 'en',
}
},
devtools: {
// enabled: true
enabled: false
},
})