Add simple meta tag config

This commit is contained in:
Maciej Pędzich 2022-07-13 20:03:12 +02:00
parent 36b4644772
commit e54943323a

10
app.vue
View File

@ -1,5 +1,15 @@
<script setup lang="ts"> <script setup lang="ts">
import Toast from 'primevue/toast'; import Toast from 'primevue/toast';
useHead({
title: 'Spotify Playlist Archive',
meta: [
{
name: 'description',
content: 'Browse past versions of thousands of playlists saved over time'
}
]
});
</script> </script>
<template> <template>