add favicon

This commit is contained in:
2023-11-01 20:41:40 +01:00
parent a5f25d1cd7
commit 90a9d1cdd0
11 changed files with 56 additions and 5 deletions

View File

@@ -38,6 +38,18 @@ export default {
updateIsMobile
};
},
head() {
return {
title: 'Augsburg Mosaic | Discover the best spots in Augsburg',
meta: [
{
hid: 'description',
name: 'description',
content: 'Explore the best spots in Augsburg with Augsburg Mosaic. Discover attractions, food, culture, nature, and more.',
}
]
};
},
beforeDestroy() {
if (process.client) {
window.removeEventListener('resize', this.updateIsMobile);