FIX: trailing slashes

Fix trailing slashes for links
This commit is contained in:
webfussel 2025-06-09 08:11:00 +02:00
parent 4726749456
commit 9930b39578
4 changed files with 11 additions and 11 deletions

View file

@ -8,7 +8,7 @@
<script setup>
useSeoMeta({
title: 'webfussel | mehr Fussel im Web by Fiona Urban',
title: 'Home',
description: 'Headless CMS, Components & APIs by Fiona Urban. Storyblok, FirstSpirit, Nuxt.',
author: 'webfussel',
robots: 'index, follow',

View file

@ -35,23 +35,23 @@ const nav = [
label: 'Home',
'aria-label': 'Link dieser Seite: Home'
}, {
to: `/booking`,
to: `/booking/`,
label: 'Projektbuchung',
'aria-label': 'Link dieser Seite: Projektbuchung'
}, {
to: `/flatrate`,
to: `/flatrate/`,
label: 'Flatrate',
'aria-label': 'Link dieser Seite: Flatrate'
}, {
to: `/references`,
to: `/references/`,
label: 'Referenzen',
'aria-label': 'Link dieser Seite: Referenzen'
}, {
to: `/contact`,
to: `/contact/`,
label: 'Kontakt',
'aria-label': 'Link dieser Seite: Kontakt'
}, {
to: '/imp',
to: '/imp/',
label: 'Impressum',
'aria-label': 'Link dieser Seite: Impressum'
}

View file

@ -1,24 +1,24 @@
export const navigation = [
{
to: `/booking`,
to: `/booking/`,
label: 'Projektbuchung',
icon: 'ph:calendar-check-duotone',
aria: 'Link dieser Seite: Preise'
},
{
to: `/flatrate`,
to: `/flatrate/`,
label: 'Flatrate',
icon: 'ph:piggy-bank-duotone',
aria: 'Link dieser Seite: Preise'
},
{
to: `/references`,
to: `/references/`,
label: 'Referenzen',
icon: 'ph:sparkle-duotone',
aria: 'Link dieser Seite: Referenzen'
},
{
to: `/contact`,
to: `/contact/`,
label: 'Kontakt',
icon: 'ph:chats-circle-duotone',
aria: 'Link dieser Seite: Kontakt'

View file

@ -84,8 +84,8 @@ export default defineNuxtConfig({
site: {
url: 'https://webfussel.de',
name: 'webfussel | mehr Fussel im Web by Fiona Urban',
trailingSlash: true,
},
compatibilityDate: '2024-12-04'
})