forked from ccbikai/Sink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
43 lines (41 loc) · 801 Bytes
/
app.vue
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
<script setup>
const { title, description, image } = useAppConfig()
useSeoMeta({
title: `${title} - ${description}`,
description,
ogType: 'website',
ogTitle: title,
ogDescription: description,
ogImage: image,
twitterTitle: title,
twitterDescription: description,
twitterImage: image,
twitterCard: 'summary_large_image',
})
useHead({
htmlAttrs: {
lang: 'en',
},
meta: [
{
name: 'viewport',
content: 'width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0',
tagPosition: 'head',
},
],
link: [
{
rel: 'icon',
type: 'image/png',
href: '/icon-192.png',
},
],
})
</script>
<template>
<NuxtLayout>
<NuxtLoadingIndicator color="#000" />
<NuxtPage />
<Toaster />
</NuxtLayout>
</template>