From c27aae5db3702d995ff2b8d9dedec58afdbe2e38 Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Thu, 3 Oct 2019 14:59:25 -0400 Subject: [PATCH] feat: added favicon --- .vuepress/config.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.vuepress/config.js b/.vuepress/config.js index 8ed30a8..aa9a56c 100644 --- a/.vuepress/config.js +++ b/.vuepress/config.js @@ -2,6 +2,17 @@ module.exports = { title: 'SUBSPACE', description: 'Reactive ÐApp Development', base: '/subspace-docs/', + head: [ + ['link', { rel: "apple-touch-icon", sizes: "180x180", href: "/assets/img/logo-small.png"}], + ['link', { rel: "icon", type: "image/png", sizes: "32x32", href: "/assets/img/logo-small.png"}], + ['link', { rel: "icon", type: "image/png", sizes: "16x16", href: "/assets/img/logo-small.png"}], + ['link', { rel: "shortcut icon", href: "/assets/img/logo-small.png"}], + ['meta', { name: "theme-color", content: "#ffffff"}], + // ['link', { rel: "manifest", href: "/assets/favicons/site.webmanifest"}], + // ['link', { rel: "mask-icon", href: "/assets/favicons/safari-pinned-tab.svg", color: "#3a0839"}], + // ['meta', { name: "msapplication-TileColor", content: "#3a0839"}], + // ['meta', { name: "msapplication-config", content: "/assets/favicons/browserconfig.xml"}], + ], markdown: { lineNumbers: true },