-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
54 lines (53 loc) · 1.86 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
modules: [
'@nuxtjs/tailwindcss',
'@nuxtjs/color-mode',
'@nuxtjs/google-fonts',
'@nuxt/content',
'@vueuse/nuxt',
],
googleFonts: {
families: {
'Open Sans': [400, 500, 600, 700],
'IBM Plex Sans': [400, 500, 600, 700],
},
display: 'swap',
preconnect: true,
download: true,
},
colorMode: {
classSuffix: '',
},
experimental: {
payloadExtraction: false,
},
build: {
transpile: ['@heroicons/vue'],
},
app: {
head: {
htmlAttrs: {
lang: 'uk',
prefix: 'og: https://ogp.me/ns#',
},
link: [
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' },
{ rel: 'icon', type: 'image/png', sizes: '32x32', href: '/favicon-32x32.png' },
{ rel: 'icon', type: 'image/png', sizes: '16x16', href: '/favicon-16x16.png' },
{ rel: 'manifest', href: '/site.webmanifest' },
{ rel: 'mask-icon', href: '/safari-pinned-tab.svg', color: '#0055a0' },
],
meta: [
{ property: 'og:title', content: 'Головна | Слідопити України' },
{ property: 'og:description', content: "Пам'ятні перлини для слідопитів та шукачів пригод на 2023 рік" },
{ property: 'og:image', content: 'https://pathfinders-ua.vercel.app/android-chrome-512x512.png' },
{ property: 'og:url', content: 'https://pathfinders-ua.vercel.app/' },
{ property: 'og:type', content: 'website' },
{ name: 'description', content: "Пам'ятні перлини для слідопитів та шукачів пригод на 2023 рік" },
{ name: 'msapplication-TileColor', content: '#ffffff' },
{ name: 'theme-color', content: '#1e293b' },
],
},
},
})