Sink-UrlShortener/app.vue
2024-05-25 08:09:30 +08:00

36 lines
580 B
Vue

<script setup>
const { title, description, image } = useAppConfig()
useSeoMeta({
title,
description,
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: '/sink.png',
},
],
})
</script>
<template>
<NuxtLayout>
<NuxtLoadingIndicator color="#000" />
<NuxtPage />
<Toaster />
</NuxtLayout>
</template>