- Commit
- 73a70906721b9132716ccff7e3c10db86a36cc1c
- Parent
- 79b6351c194805ee25d4a4974f0bfee9c1d43366
- Author
- Gark Garcia <37553739+GarkGarcia@users.noreply.github.com>
- Date
Moved manifest.json to the site's root.
A simple SVG markup editor for the web
Moved manifest.json to the site's root.
4 files changed, 24 insertions, 24 deletions
Status | File Name | N° Changes | Insertions | Deletions |
Deleted | assets/icons/manifest.json | 22 | 0 | 22 |
Modified | build/template.html | 2 | 1 | 1 |
Modified | index.html | 2 | 1 | 1 |
Added | manifest.json | 22 | 22 | 0 |
diff --git a/assets/icons/manifest.json b/assets/icons/manifest.json @@ -1,21 +0,0 @@ -{ - "name": "RawSvg", - "short_name": "RawSvg", - "icons": [ - { - "src": "assets/icons/android-chrome-192x192.png", - "sizes": "192x192", - "type": "image/png" - }, - { - "src": "assets/icons/android-chrome-512x512.png", - "sizes": "512x512", - "type": "image/png" - } - ], - "start_url": "/", - "background_color": "#2D2B55", - "display": "standalone", - "scope": "/", - "theme_color": "#B362FF" -}- \ No newline at end of file
diff --git a/build/template.html b/build/template.html @@ -9,7 +9,7 @@ <link rel="apple-touch-icon" sizes="180x180" href="assets/icons/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="assets/icons/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="assets/icons/favicon-16x16.png"> - <link rel="manifest" href="assets/icons/manifest.json"> + <link rel="manifest" href="manifest.json"> <link rel="mask-icon" href="assets/icons/safari-pinned-tab.svg" color="#b362ff"> <link rel="shortcut icon" href="assets/icons/favicon.ico"> <meta name="msapplication-TileColor" content="#9f00a7">
diff --git a/index.html b/index.html @@ -9,7 +9,7 @@ <link rel="apple-touch-icon" sizes="180x180" href="assets/icons/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="assets/icons/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="assets/icons/favicon-16x16.png"> - <link rel="manifest" href="assets/icons/manifest.json"> + <link rel="manifest" href="manifest.json"> <link rel="mask-icon" href="assets/icons/safari-pinned-tab.svg" color="#b362ff"> <link rel="shortcut icon" href="assets/icons/favicon.ico"> <meta name="msapplication-TileColor" content="#9f00a7">
diff --git a/manifest.json b/manifest.json @@ -0,0 +1,21 @@ +{ + "name": "RawSvg", + "short_name": "RawSvg", + "icons": [ + { + "src": "assets/icons/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "assets/icons/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "start_url": "/index.html", + "background_color": "#2D2B55", + "display": "standalone", + "scope": "/", + "theme_color": "#B362FF" +}+ \ No newline at end of file