Update paths to be relative
This commit is contained in:
parent
1d65957d69
commit
38160c2a46
3 changed files with 8 additions and 8 deletions
2
dist/icon/browserconfig.xml
vendored
2
dist/icon/browserconfig.xml
vendored
|
@ -2,7 +2,7 @@
|
||||||
<browserconfig>
|
<browserconfig>
|
||||||
<msapplication>
|
<msapplication>
|
||||||
<tile>
|
<tile>
|
||||||
<square150x150logo src="/icon/mstile-150x150.png"/>
|
<square150x150logo src="icon/mstile-150x150.png"/>
|
||||||
<TileColor>#da532c</TileColor>
|
<TileColor>#da532c</TileColor>
|
||||||
</tile>
|
</tile>
|
||||||
</msapplication>
|
</msapplication>
|
||||||
|
|
4
dist/icon/site.webmanifest
vendored
4
dist/icon/site.webmanifest
vendored
|
@ -3,12 +3,12 @@
|
||||||
"short_name": "Visual Subnet Calc",
|
"short_name": "Visual Subnet Calc",
|
||||||
"icons": [
|
"icons": [
|
||||||
{
|
{
|
||||||
"src": "/icon/android-chrome-192x192.png",
|
"src": "icon/android-chrome-192x192.png",
|
||||||
"sizes": "192x192",
|
"sizes": "192x192",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"src": "/icon/android-chrome-512x512.png",
|
"src": "icon/android-chrome-512x512.png",
|
||||||
"sizes": "512x512",
|
"sizes": "512x512",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
}
|
}
|
||||||
|
|
10
dist/index.html
vendored
10
dist/index.html
vendored
|
@ -8,11 +8,11 @@
|
||||||
<link href="css/main.css" rel="stylesheet">
|
<link href="css/main.css" rel="stylesheet">
|
||||||
<meta name="description" content="Quickly design and collaborate on network design. Visual Subnet Calculator focuses on expediting the work of network administrators, not academic subnetting math.">
|
<meta name="description" content="Quickly design and collaborate on network design. Visual Subnet Calculator focuses on expediting the work of network administrators, not academic subnetting math.">
|
||||||
<meta name="robots" content="index, follow" />
|
<meta name="robots" content="index, follow" />
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="/icon/apple-touch-icon.png">
|
<link rel="apple-touch-icon" sizes="180x180" href="icon/apple-touch-icon.png">
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="/icon/favicon-32x32.png">
|
<link rel="icon" type="image/png" sizes="32x32" href="icon/favicon-32x32.png">
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="/icon/favicon-16x16.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="icon/favicon-16x16.png">
|
||||||
<link rel="manifest" href="/icon/site.webmanifest">
|
<link rel="manifest" href="icon/site.webmanifest">
|
||||||
<link rel="mask-icon" href="/icon/safari-pinned-tab.svg" color="#5bbad5">
|
<link rel="mask-icon" href="icon/safari-pinned-tab.svg" color="#5bbad5">
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
<meta name="msapplication-TileColor" content="#da532c">
|
||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
</head>
|
</head>
|
||||||
|
|
Loading…
Reference in a new issue