From 0572af7df440df47ea151b9b784d8d0c2283c89f Mon Sep 17 00:00:00 2001 From: Tejas2805 <35946746+Tejas2805@users.noreply.github.com> Date: Mon, 30 Sep 2019 23:57:43 +0800 Subject: [PATCH] [#897] Report: favicon not showing on github pages (#898) Modern browsers automatically try to load the favicon from the root of the website. However, for GitHub pages, our favicon is not located in the root but in another path. Let's explicitly add a link to our favicon resource so that it gets displayed. --- frontend/src/index.pug | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/index.pug b/frontend/src/index.pug index c6ad7eefe4..138f4a5ec9 100644 --- a/frontend/src/index.pug +++ b/frontend/src/index.pug @@ -1,6 +1,7 @@ html head title RepoSense Report + link(rel="shortcut icon" type="image/x-icon" href="favicon.ico") link(rel="stylesheet", href="https://fonts.googleapis.com/css?family=Titillium+Web") link(rel="stylesheet", href="https://cdn.jsdelivr.net/npm/normalize.css@8.0/normalize.min.css") link(rel="stylesheet", href="https://cdn.jsdelivr.net/npm/muicss@0.9/dist/css/mui.min.css")