-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
30 lines (29 loc) · 823 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
<script setup lang="ts">
useHead({
htmlAttrs: {
lang: 'en',
},
charset: 'utf-8',
title: 'Moovie Time',
titleTemplate: title => title !== 'Moovie Time' ? `${title} · Moovie Time` : title,
meta: [
{ name: 'description', content: 'A TMDB client built with Nuxt Image to show the potential of it ✨' },
{ property: 'og:image', content: 'https://moovie-time-nuxt.vercel.app/social-card.png' },
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:site', content: '@dianprataaa' },
{ name: 'twitter:creator', content: '@dianprataaa' },
],
link: [
{
rel: 'icon', type: 'image/webp', href: '/moovie-time.webp',
},
],
})
</script>
<template>
<NuxtLoadingIndicator />
<VitePwaManifest />
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>