From b3aac9b172699d32a1bbca4519844c88ff9ffe74 Mon Sep 17 00:00:00 2001 From: Justin Geibel Date: Sat, 21 Dec 2019 20:33:34 -0500 Subject: [PATCH] Fix an icon link that was generating bad URLs On current staging, but not production, navigating directly to a path such as `/crates/crate-name` results in a request sent to `/crates/cargo-835dd6a18132048a52ac569f2615b59d.png` (a 404 response status). It appears that the `src` field is now treated as a relative path. Using an absolute URL works for me locally. --- config/manifest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/manifest.js b/config/manifest.js index 157de48b459..a41cc5e1fdf 100644 --- a/config/manifest.js +++ b/config/manifest.js @@ -11,7 +11,7 @@ module.exports = function(/* environment, appConfig */) { theme_color: '#f9f7ec', icons: [ { - src: 'cargo.png', + src: '/cargo.png', sizes: '227x227', type: 'image/png', },