@massimo-cassandro/create-favicons 1.3.0 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@massimo-cassandro/create-favicons",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Favicon files builder",
5
5
  "bin": {
6
6
  "create-favicons": "./index.mjs"
@@ -11,7 +11,7 @@ export async function createSnippet(params) {
11
11
  .replace('%_cache_buster_%', cache_buster);
12
12
 
13
13
 
14
- let snippet_content = `<link rel="icon" href="${create_href('favicon.ico')}" sizes="any">\n` +
14
+ let snippet_content = `<link rel="icon" href="${create_href('favicon.ico')}" sizes="32x32">\n` +
15
15
  `<link rel="icon" href="${create_href('favicon.svg')}" type="image/svg+xml">\n` +
16
16
  `<link rel="apple-touch-icon" href="${create_href('apple-touch-icon.png')}">\n` +
17
17
  `<link rel="manifest" href="${create_href('manifest.webmanifest')}">`;