Sink-UrlShortener/app.vue
2024-06-08 19:17:49 +08:00

37 lines
611 B
Vue

<script setup>
const { title, description, image } = useAppConfig()
useServerSeoMeta({
title,
description,
ogType: 'website',
ogTitle: title,
ogDescription: description,
ogImage: image,
twitterTitle: title,
twitterDescription: description,
twitterImage: image,
twitterCard: 'summary_large_image',
})
useHead({
htmlAttrs: {
lang: 'en',
},
link: [
{
rel: 'icon',
type: 'image/png',
href: '/icon-192.png',
},
],
})
</script>
<template>
<NuxtLayout>
<NuxtLoadingIndicator color="#000" />
<NuxtPage />
<Toaster />
</NuxtLayout>
</template>