mirror of https://gitlab.com/curben/blog
fix(assets): remove cache-buster
This commit is contained in:
parent
56992697a7
commit
d9077aaf1c
|
@ -2,7 +2,7 @@
|
|||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square150x150logo src="/mstile-150x150.png?v=yyQLrgrMjG"/>
|
||||
<square150x150logo src="/mstile-150x150.png"/>
|
||||
<TileColor>#3f72af</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
|
|
|
@ -3,12 +3,12 @@
|
|||
"short_name": "",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/android-chrome-192x192.png?v=yyQLrgrMjG",
|
||||
"src": "/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/android-chrome-512x512.png?v=yyQLrgrMjG",
|
||||
"src": "/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
|
|
|
@ -32,14 +32,14 @@
|
|||
<%- feed_tag(theme.rss) %>
|
||||
<% } %>
|
||||
<%/* Favicon */%>
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="<%- url_for('/apple-touch-icon.png?v=yyQLrgrMjG') %>">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="<%- url_for('/favicon-32x32.png?v=yyQLrgrMjG') %>">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="<%- url_for('/favicon-16x16.png?v=yyQLrgrMjG') %>">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="<%- url_for('/favicon-16x16.png?v=yyQLrgrMjG') %>">
|
||||
<link rel="icon" type="image/svg+xml" href="<%- url_for('/svg/favicon.svg?v=yyQLrgrMjG') %>">
|
||||
<link rel="manifest" href="<%- url_for('/site.webmanifest?v=yyQLrgrMjG') %>">
|
||||
<link rel="mask-icon" href="<%- url_for('/safari-pinned-tab.svg?v=yyQLrgrMjG') %>" color="#3f72af">
|
||||
<link rel="shortcut icon" href="<%- url_for('/favicon.ico?v=yyQLrgrMjG') %>">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="<%- url_for('/apple-touch-icon.png') %>">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="<%- url_for('/favicon-32x32.png') %>">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="<%- url_for('/favicon-16x16.png') %>">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="<%- url_for('/favicon-16x16.png') %>">
|
||||
<link rel="icon" type="image/svg+xml" href="<%- url_for('/svg/favicon.svg') %>">
|
||||
<link rel="manifest" href="<%- url_for('/site.webmanifest') %>">
|
||||
<link rel="mask-icon" href="<%- url_for('/safari-pinned-tab.svg') %>" color="#3f72af">
|
||||
<link rel="shortcut icon" href="<%- url_for('/favicon.ico') %>">
|
||||
<meta name="apple-mobile-web-app-title" content="<%= config.title %>">
|
||||
<meta name="application-name" content="<%= config.title %>">
|
||||
<meta name="msapplication-TileColor" content="#3f72af">
|
||||
|
|
Loading…
Reference in New Issue