Add favicon
This commit is contained in:
parent
bf0fbdd0ca
commit
a1ba3f2015
4 changed files with 32 additions and 4 deletions
|
@ -2,13 +2,41 @@ import { defineConfig } from "vitepress";
|
|||
|
||||
// https://vitepress.dev/reference/site-config
|
||||
export default defineConfig({
|
||||
title: "Ente Docs",
|
||||
description: "Guide for ente.io apps",
|
||||
title: "Ente's Docs",
|
||||
description: "Help guide for apps from Ente",
|
||||
head: [
|
||||
[
|
||||
"link",
|
||||
{
|
||||
rel: "apple-touch-icon",
|
||||
sizes: "180x180",
|
||||
href: "/apple-touch-icon.png",
|
||||
},
|
||||
],
|
||||
[
|
||||
"link",
|
||||
{
|
||||
rel: "icon",
|
||||
type: "image/png",
|
||||
sizes: "32x32",
|
||||
href: "/favicon-32x32.png",
|
||||
},
|
||||
],
|
||||
[
|
||||
"link",
|
||||
{
|
||||
rel: "icon",
|
||||
type: "image/png",
|
||||
sizes: "16x16",
|
||||
href: "/favicon-16x16.png",
|
||||
},
|
||||
],
|
||||
],
|
||||
themeConfig: {
|
||||
// https://vitepress.dev/reference/default-theme-config
|
||||
editLink: {
|
||||
pattern: "https://github.com/ente-io/docs/edit/main/docs/:path",
|
||||
},
|
||||
// https://vitepress.dev/reference/default-theme-config
|
||||
nav: [
|
||||
{ text: "Photos", link: "/photos/index" },
|
||||
{ text: "Authenticator", link: "/authenticator/index" },
|
||||
|
@ -16,7 +44,7 @@ export default defineConfig({
|
|||
search: {
|
||||
provider: "local",
|
||||
options: {
|
||||
detailedView: true,
|
||||
detailedView: true,
|
||||
},
|
||||
},
|
||||
sidebar: {
|
||||
|
|
BIN
docs/public/apple-touch-icon.png
Normal file
BIN
docs/public/apple-touch-icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
BIN
docs/public/favicon-16x16.png
Normal file
BIN
docs/public/favicon-16x16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 473 B |
BIN
docs/public/favicon-32x32.png
Normal file
BIN
docs/public/favicon-32x32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 863 B |
Loading…
Add table
Reference in a new issue