-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.vue
44 lines (43 loc) · 868 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
44
<template>
<NuxtLayout>
<ClientOnly>
<Ackee />
</ClientOnly>
<NuxtPage />
</NuxtLayout>
</template>
<script setup lang="ts">
useHead({
htmlAttrs: {
lang: "en",
"data-theme": "light",
},
titleTemplate: "%s | " + useAppConfig().siteConfig.siteTitle,
meta: [
{
name: "description",
content: useAppConfig().siteConfig.siteDescription,
},
{
property: "og:title",
content: useAppConfig().siteConfig.siteTitle,
},
{
property: "og:description",
content: useAppConfig().siteConfig.siteDescription,
},
{
property: "og:type",
content: "website",
},
{
property: "og:image",
content: useAppConfig().siteConfig.siteLogo,
},
{
property: "og:site_name",
content: useAppConfig().siteConfig.shortSiteUrl,
},
],
});
</script>