Skip to content

Commit

Permalink
fix(book): correct the favicon URL
Browse files Browse the repository at this point in the history
This was set to the root, but the site is currently deployed under the
`/stef/` path on Codeberg Pages.
  • Loading branch information
dnaka91 committed Jan 1, 2024
1 parent cd9877f commit d66ad2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book/.vitepress/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default defineConfig({
preserveSymlinks: true,
},
},
head: [["link", { rel: "icon", type: "image/svg+xml", href: "/logo.svg" }]],
head: [["link", { rel: "icon", type: "image/svg+xml", href: "/stef/logo.svg" }]],
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
logo: "/logo.svg",
Expand Down

0 comments on commit d66ad2e

Please sign in to comment.