-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.vue
More file actions
35 lines (32 loc) · 731 Bytes
/
app.vue
File metadata and controls
35 lines (32 loc) · 731 Bytes
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
<script setup lang="ts">
const appConfig = useAppConfig()
const runtimeConfig = useRuntimeConfig()
const appDomain = runtimeConfig.public.appUrl
const appName = appConfig.name
const appDescription = appConfig.description
const appImage = `${appDomain}/logo.svg`
useSeoMeta({
title: appName,
ogTitle: appName,
description: appDescription,
ogDescription: appDescription,
ogImage: appImage,
twitterCard: 'summary_large_image',
})
useHead({
bodyAttrs: {
'data-theme': 'morpheme',
},
})
</script>
<template>
<Html lang="en" />
<Head>
<Link rel="icon" href="/logo.png" type="image/png" />
</Head>
<NuxtLayout>
<NuxtLoadingIndicator />
<NuxtPage />
</NuxtLayout>
<GlobalToast />
</template>