Skip to content

Commit

Permalink
Work around an issue with site.webmanifest
Browse files Browse the repository at this point in the history
The error when this line is uncommented is:

> The asset "favicon/site.webmanifest" is not present in the asset pipeline.

I have tried the suggestions on this issue to no avail: RealFaviconGenerator/rails_real_favicon#35
  • Loading branch information
glacials committed Oct 20, 2024
1 parent 1d2bfa0 commit 983312e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/application/_favicon.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<link rel="icon" type="image/png" sizes="194x194" href="<%= asset_path('favicon/favicon-194x194.png') %>">
<link rel="icon" type="image/png" sizes="192x192" href="<%= asset_path('favicon/android-chrome-192x192.png') %>">
<link rel="icon" type="image/png" sizes="16x16" href="<%= asset_path('favicon/favicon-16x16.png') %>">
<link rel="manifest" href="<%= asset_path('favicon/site.webmanifest') %>">
<%# <link rel="manifest" href="<%= asset_path('favicon/site.webmanifest') %>"> %>
<link rel="mask-icon" href="<%= asset_path('favicon/safari-pinned-tab.svg') %>" color="#292b30">
<link rel="shortcut icon" href="<%= asset_path('favicon/favicon.ico') %>">
<meta name="apple-mobile-web-app-title" content="Splits.io">
Expand Down

0 comments on commit 983312e

Please sign in to comment.