Sink-UrlShortener/app.vue

37 lines
634 B
Vue

<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',
},
link: [
{
rel: 'icon',
type: 'image/png',
href: '/icon-192.png',
},
],
})
</script>
<template>
<NuxtLayout>
<NuxtLoadingIndicator color="#000" />
<NuxtPage />
<Toaster />
</NuxtLayout>
</template>