Skip to content

Commit 67c4aeb

Browse files
committed
📝 Add favicon to documentation
1 parent d4c6d71 commit 67c4aeb

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

Diff for: docs/.vitepress/config.ts

+29
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,35 @@ export default defineConfig({
77
title: "eslint-plugin-vuejs-a11y",
88
base: "/eslint-plugin-vuejs-accessibility/",
99
description,
10+
head: [
11+
[
12+
"link",
13+
{
14+
rel: "icon",
15+
type: "image/png",
16+
sizes: "32x32",
17+
href: "https://vue-a11y.com/favicon/favicon-32x32.png"
18+
}
19+
],
20+
[
21+
"link",
22+
{
23+
rel: "icon",
24+
type: "image/png",
25+
sizes: "96x96",
26+
href: "https://vue-a11y.com/favicon/favicon-96x96.png"
27+
}
28+
],
29+
[
30+
"link",
31+
{
32+
rel: "icon",
33+
type: "image/png",
34+
sizes: "16x16",
35+
href: "https://vue-a11y.com/favicon/favicon-16x16.png"
36+
}
37+
]
38+
],
1039
themeConfig: {
1140
// https://vitepress.dev/reference/default-theme-config
1241
nav: [

0 commit comments

Comments
 (0)