Add RT favicons for now
Before Width: | Height: | Size: 4.2 KiB |
BIN
public/favicons/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
public/favicons/android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 55 KiB |
BIN
public/favicons/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 13 KiB |
9
public/favicons/browserconfig.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square150x150logo src="/favicons/mstile-150x150.png"/>
|
||||
<TileColor>#2d89ef</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
BIN
public/favicons/favicon-16x16.png
Normal file
After Width: | Height: | Size: 921 B |
BIN
public/favicons/favicon-32x32.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
public/favicons/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
public/favicons/mstile-150x150.png
Normal file
After Width: | Height: | Size: 11 KiB |
20
public/favicons/site.webmanifest
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
"name": "RTGame Minecraft",
|
||||
"short_name": "RTGame Minecraft",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/favicons/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/favicons/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#222222",
|
||||
"background_color": "#222222",
|
||||
"start_url": "https://minecraft.rtgame.co.uk",
|
||||
"display": "standalone"
|
||||
}
|
@ -6,16 +6,22 @@
|
||||
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no">
|
||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||
|
||||
<meta name="keywords" content="minecraft, map, dynamic" />
|
||||
<meta name="description" content="Minecraft Dynamic Map" />
|
||||
<meta name="theme-color" content="#222222">
|
||||
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
||||
|
||||
<link rel="icon" href="images/dynmap.ico" type="image/ico" />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="<%= BASE_URL %>favicons/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="<%= BASE_URL %>favicons/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="<%= BASE_URL %>favicons/favicon-16x16.png">
|
||||
<link rel="manifest" href="<%= BASE_URL %>favicons/site.webmanifest">
|
||||
<link rel="shortcut icon" href="<%= BASE_URL %>favicons/favicon.ico">
|
||||
|
||||
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||
|
||||
<style>
|
||||
html, body {
|
||||
background-color: #121212;
|
||||
|