Skip to content

Commit

Permalink
📝 Add favicon to documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
vhoyer committed Jul 17, 2023
1 parent d4c6d71 commit 67c4aeb
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,35 @@ export default defineConfig({
title: "eslint-plugin-vuejs-a11y",
base: "/eslint-plugin-vuejs-accessibility/",
description,
head: [
[
"link",
{
rel: "icon",
type: "image/png",
sizes: "32x32",
href: "https://vue-a11y.com/favicon/favicon-32x32.png"
}
],
[
"link",
{
rel: "icon",
type: "image/png",
sizes: "96x96",
href: "https://vue-a11y.com/favicon/favicon-96x96.png"
}
],
[
"link",
{
rel: "icon",
type: "image/png",
sizes: "16x16",
href: "https://vue-a11y.com/favicon/favicon-16x16.png"
}
]
],
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
Expand Down

0 comments on commit 67c4aeb

Please sign in to comment.