Skip to content

Commit ecba6b2

Browse files
committed
Auto merge of #2045 - jtgeibel:fix-bad-icon-link, r=Turbo87
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. r? @Turbo87
2 parents 03fb901 + b3aac9b commit ecba6b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/manifest.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = function(/* environment, appConfig */) {
1111
theme_color: '#f9f7ec',
1212
icons: [
1313
{
14-
src: 'cargo.png',
14+
src: '/cargo.png',
1515
sizes: '227x227',
1616
type: 'image/png',
1717
},

0 commit comments

Comments
 (0)