Skip to content

Commit

Permalink
Used absolute urls to see if they impact the project
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofVDB1 committed Nov 28, 2023
1 parent cbec1bf commit db9d347
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 12 deletions.
4 changes: 2 additions & 2 deletions components/c-footer/c-footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ const data: Footer = {
},
links: [
{
href: '/sloefke',
href: 'https://depauwendeschutter.be/sloefke',
title: 'Sloefke',
},
{
href: '/geudenstraat',
href: 'https://depauwendeschutter.be/geudenstraat',
title: 'Geudenstraat',
},
],
Expand Down
4 changes: 2 additions & 2 deletions components/navigation/navigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
</div>
<div class="navigation__links">
<div class="navigation__links__item">
<a href="/sloefke">Sloefke</a>
<a href="https://depauwendeschutter.be/sloefke">Sloefke</a>
</div>
<div class="navigation__links__item">
<a href="/geudenstraat">Geudenstraat</a>
<a href="https://depauwendeschutter.be/geudenstraat">Geudenstraat</a>
</div>
</div>
</nav>
Expand Down
2 changes: 1 addition & 1 deletion content/geudenstraat/kamer-1/configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"src": "/images/image.jpeg"
},
"link": {
"href": "/geudenstraat/kamer-1",
"href": "https://depauwendeschutter.be/geudenstraat/kamer-1",
"title": "Bekijk details"
},
"paragraphs": [
Expand Down
2 changes: 1 addition & 1 deletion content/geudenstraat/kamer-2/configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"src": "/images/image.jpeg"
},
"link": {
"href": "/geudenstraat/kamer-2",
"href": "https://depauwendeschutter.be/geudenstraat/kamer-2",
"title": "Bekijk details"
},
"paragraphs": [
Expand Down
2 changes: 1 addition & 1 deletion content/sloefke/kamer-1/configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"src": "/images/image.jpeg"
},
"link": {
"href": "/sloefke/kamer-1",
"href": "/https://depauwendeschutter.be/sloefke/kamer-1",
"title": "Bekijk details"
},
"paragraphs": [
Expand Down
2 changes: 1 addition & 1 deletion content/sloefke/kamer-2/configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"src": "/images/image.jpeg"
},
"link": {
"href": "/sloefke/kamer-2",
"href": "https://depauwendeschutter.be/sloefke/kamer-2",
"title": "Bekijk details"
},
"paragraphs": [
Expand Down
2 changes: 1 addition & 1 deletion content/sloefke/kamer-3/configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"src": "/images/image.jpeg"
},
"link": {
"href": "/sloefke/kamer-3",
"href": "https://depauwendeschutter.be/sloefke/kamer-3",
"title": "Bekijk details"
},
"paragraphs": [
Expand Down
1 change: 0 additions & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ export default defineNuxtConfig({
// define preset for nitro and which backend to serve the project
preset: "node-server",
prerender: {
routes: ['/geudenstraat', '/sloefke'],
ignore: ['/api']
}
},
Expand Down
4 changes: 2 additions & 2 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ const cardItems: Array<Card> = [
title: 'Sloefke',
description: 'Lorem ipsum',
link: {
href: '/sloefke',
href: 'https://depauwendeschutter.be/sloefke',
title: 'Lees meer',
},
},
{
title: 'Geudenstraat',
description: 'Lorem ipsum',
link: {
href: '/geudenstraat',
href: 'https://depauwendeschutter.be/geudenstraat',
title: 'Lees meer',
},
},
Expand Down

0 comments on commit db9d347

Please sign in to comment.