Skip to content

Commit

Permalink
fix trailing slashes
Browse files Browse the repository at this point in the history
  • Loading branch information
numselli committed Dec 9, 2024
1 parent 9285842 commit 8b7ab3e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ export default defineNuxtConfig({
},

site: {
url: "https://numselli.xyz"
url: "https://numselli.xyz",
trailingSlash: true
},

ui: {
Expand Down
2 changes: 2 additions & 0 deletions src/pages/projects/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ useSeoMeta({
description: "Most of the projects I have worked on.",
});
const description = ""
const { data: projects } = await useAsyncData("projects-all", () =>
queryContent("/projects").find()
);
Expand Down

0 comments on commit 8b7ab3e

Please sign in to comment.