FIX: trailing slashes
Fix trailing slashes for links
This commit is contained in:
parent
4726749456
commit
9930b39578
4 changed files with 11 additions and 11 deletions
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
useSeoMeta({
|
useSeoMeta({
|
||||||
title: 'webfussel | mehr Fussel im Web by Fiona Urban',
|
title: 'Home',
|
||||||
description: 'Headless CMS, Components & APIs by Fiona Urban. Storyblok, FirstSpirit, Nuxt.',
|
description: 'Headless CMS, Components & APIs by Fiona Urban. Storyblok, FirstSpirit, Nuxt.',
|
||||||
author: 'webfussel',
|
author: 'webfussel',
|
||||||
robots: 'index, follow',
|
robots: 'index, follow',
|
||||||
|
|
|
@ -35,23 +35,23 @@ const nav = [
|
||||||
label: 'Home',
|
label: 'Home',
|
||||||
'aria-label': 'Link dieser Seite: Home'
|
'aria-label': 'Link dieser Seite: Home'
|
||||||
}, {
|
}, {
|
||||||
to: `/booking`,
|
to: `/booking/`,
|
||||||
label: 'Projektbuchung',
|
label: 'Projektbuchung',
|
||||||
'aria-label': 'Link dieser Seite: Projektbuchung'
|
'aria-label': 'Link dieser Seite: Projektbuchung'
|
||||||
}, {
|
}, {
|
||||||
to: `/flatrate`,
|
to: `/flatrate/`,
|
||||||
label: 'Flatrate',
|
label: 'Flatrate',
|
||||||
'aria-label': 'Link dieser Seite: Flatrate'
|
'aria-label': 'Link dieser Seite: Flatrate'
|
||||||
}, {
|
}, {
|
||||||
to: `/references`,
|
to: `/references/`,
|
||||||
label: 'Referenzen',
|
label: 'Referenzen',
|
||||||
'aria-label': 'Link dieser Seite: Referenzen'
|
'aria-label': 'Link dieser Seite: Referenzen'
|
||||||
}, {
|
}, {
|
||||||
to: `/contact`,
|
to: `/contact/`,
|
||||||
label: 'Kontakt',
|
label: 'Kontakt',
|
||||||
'aria-label': 'Link dieser Seite: Kontakt'
|
'aria-label': 'Link dieser Seite: Kontakt'
|
||||||
}, {
|
}, {
|
||||||
to: '/imp',
|
to: '/imp/',
|
||||||
label: 'Impressum',
|
label: 'Impressum',
|
||||||
'aria-label': 'Link dieser Seite: Impressum'
|
'aria-label': 'Link dieser Seite: Impressum'
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,24 +1,24 @@
|
||||||
export const navigation = [
|
export const navigation = [
|
||||||
{
|
{
|
||||||
to: `/booking`,
|
to: `/booking/`,
|
||||||
label: 'Projektbuchung',
|
label: 'Projektbuchung',
|
||||||
icon: 'ph:calendar-check-duotone',
|
icon: 'ph:calendar-check-duotone',
|
||||||
aria: 'Link dieser Seite: Preise'
|
aria: 'Link dieser Seite: Preise'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
to: `/flatrate`,
|
to: `/flatrate/`,
|
||||||
label: 'Flatrate',
|
label: 'Flatrate',
|
||||||
icon: 'ph:piggy-bank-duotone',
|
icon: 'ph:piggy-bank-duotone',
|
||||||
aria: 'Link dieser Seite: Preise'
|
aria: 'Link dieser Seite: Preise'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
to: `/references`,
|
to: `/references/`,
|
||||||
label: 'Referenzen',
|
label: 'Referenzen',
|
||||||
icon: 'ph:sparkle-duotone',
|
icon: 'ph:sparkle-duotone',
|
||||||
aria: 'Link dieser Seite: Referenzen'
|
aria: 'Link dieser Seite: Referenzen'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
to: `/contact`,
|
to: `/contact/`,
|
||||||
label: 'Kontakt',
|
label: 'Kontakt',
|
||||||
icon: 'ph:chats-circle-duotone',
|
icon: 'ph:chats-circle-duotone',
|
||||||
aria: 'Link dieser Seite: Kontakt'
|
aria: 'Link dieser Seite: Kontakt'
|
||||||
|
|
|
@ -84,8 +84,8 @@ export default defineNuxtConfig({
|
||||||
site: {
|
site: {
|
||||||
url: 'https://webfussel.de',
|
url: 'https://webfussel.de',
|
||||||
name: 'webfussel | mehr Fussel im Web by Fiona Urban',
|
name: 'webfussel | mehr Fussel im Web by Fiona Urban',
|
||||||
|
trailingSlash: true,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
compatibilityDate: '2024-12-04'
|
compatibilityDate: '2024-12-04'
|
||||||
})
|
})
|
Loading…
Add table
Add a link
Reference in a new issue