Fix favicon issues
This commit is contained in:
parent
d679618d82
commit
9e2ba5f4a6
5 changed files with 11 additions and 2 deletions
|
@ -7,7 +7,6 @@
|
||||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||||
<meta name="google-site-verification" content="AP7ip-eAPj3abUpEkg2_RJsN3o-kUWd83TwIrxfyDCQ" />
|
<meta name="google-site-verification" content="AP7ip-eAPj3abUpEkg2_RJsN3o-kUWd83TwIrxfyDCQ" />
|
||||||
<title>Vanity ETH</title>
|
<title>Vanity ETH</title>
|
||||||
<link rel="icon" type="image/png" href="src/assets/images/favicon.png" />
|
|
||||||
<link rel="stylesheet" href="dist/style.css">
|
<link rel="stylesheet" href="dist/style.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
10
src/App.vue
10
src/App.vue
|
@ -199,9 +199,19 @@
|
||||||
this.threads = this.cores;
|
this.threads = this.cores;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
addFavicon: function () {
|
||||||
|
const i = document.createElement('link');
|
||||||
|
const icon = require('./assets/images/favicon.ico');
|
||||||
|
|
||||||
|
i.type = 'image/x-icon';
|
||||||
|
i.rel = 'shortcut icon';
|
||||||
|
i.href = icon;
|
||||||
|
document.head.appendChild(i);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
created: function () {
|
created: function () {
|
||||||
|
this.addFavicon();
|
||||||
this.countCores();
|
this.countCores();
|
||||||
this.initWorkers();
|
this.initWorkers();
|
||||||
}
|
}
|
||||||
|
|
BIN
src/assets/images/favicon.ico
Normal file
BIN
src/assets/images/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
Binary file not shown.
Before Width: | Height: | Size: 17 KiB |
|
@ -35,7 +35,7 @@ module.exports = {
|
||||||
exclude: /node_modules/
|
exclude: /node_modules/
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.(png|woff2)/,
|
test: /\.(png|woff2|ico)/,
|
||||||
exclude: /node_modules/,
|
exclude: /node_modules/,
|
||||||
loader: 'url-loader'
|
loader: 'url-loader'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue