Skip to content

Commit b3aac9b

Browse files
committed
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.
1 parent a987769 commit b3aac9b

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)