diff --git a/app/app.vue b/app/app.vue index 29936a9b..dfe34d61 100644 --- a/app/app.vue +++ b/app/app.vue @@ -5,6 +5,12 @@ const useIdFunction = () => useId() const textDirection = useTextDirection({ initialValue: 'ltr' }) const dir = computed(() => (textDirection.value === 'rtl' ? 'rtl' : 'ltr')) + +useHead({ + // as a string, + // where `%s` is replaced with the title + titleTemplate: '%s - RSSA', +})