Better favicon handling, html teamplate and package.json adjusted

pull/9/head
Vladimir Volek 6 years ago
parent bc2d03a7ae
commit 003b758bfe

@ -3,9 +3,6 @@
"version": "1.0.0",
"author": "TREZOR <info@trezor.io>",
"description": "",
"bugs": {
"url": "https://github.com/szymonlesisz/trezor-connect-react-boilerplate/issues"
},
"bin": {
"flow": "./node_modules/flow-bin"
},

@ -5,12 +5,10 @@
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Ethereum Wallet | TREZOR</title>
<meta name="title" content="TrezorConnect" />
<meta name="description" content="TrezorConnect" />
<meta name="keywords" content="TrezorConnect" />
<meta name="author" content="" />
<link rel="icon" type="image/png" href="favicon.png">
<!--[if IE]><link rel="shortcut icon" href="favicon.ico"/><![endif]-->
<meta name="title" content="Trezor Wallet" />
<meta name="description" content="Trezor Wallet" />
<meta name="keywords" content="trezor wallet" />
<meta name="author" content="satoshilabs s.r.o." />
<meta name="viewport" content="width=1024, initial-scale=1">
</head>
<body>

@ -93,6 +93,7 @@ module.exports = {
template: `${SRC}index.html`,
filename: 'index.html',
inject: true,
favicon: `${SRC}images/favicon.ico`,
}),
new webpack.optimize.OccurrenceOrderPlugin(),
new webpack.NoEmitOnErrorsPlugin(),

@ -119,6 +119,7 @@ module.exports = {
template: `${SRC}index.html`,
filename: 'index.html',
inject: true,
favicon: `${SRC}images/favicon.ico`,
}),
new HtmlWebpackPlugin({

@ -90,6 +90,7 @@ module.exports = {
template: `${SRC}index.html`,
filename: 'index.html',
inject: true,
favicon: `${SRC}images/favicon.ico`,
}),
new CopyWebpackPlugin([
{ from: `${PUBLIC}`, to: './' },

Loading…
Cancel
Save