From 7b2382d66042db6ba98ae86d310dc4b48d65b980 Mon Sep 17 00:00:00 2001 From: Sebin Nyshkim Date: Wed, 22 Sep 2021 20:31:15 +0200 Subject: [PATCH] feat: :lipstick: add theme-color for mobile chrome --- vue.config.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/vue.config.js b/vue.config.js index 0c388a9..f541a85 100644 --- a/vue.config.js +++ b/vue.config.js @@ -21,8 +21,7 @@ module.exports = { config.plugin("html").tap((args) => { const meta = { title: "Sebin Nyshkim - Reference Page", - desc: - "The official reference page for Sebin Nyshkim with picture references and in-depth character descriptions", + desc: "The official reference page for Sebin Nyshkim with picture references and in-depth character descriptions", type: "website", url: "https://ref.sebin-nyshkim.net", favicon: "favicon.png", @@ -31,6 +30,7 @@ module.exports = { card: "summary_large_image", creator: "@SebinNyshkim", }, + themeColor: "#e74c3c", }; const links = { @@ -59,6 +59,7 @@ module.exports = { "og:url": meta.url, "og:image": `${meta.url}/${meta.preview}`, "og:description": meta.desc, + "theme-color": meta.themeColor, }; return args;