commit 1baf3d0751c6d48463be63df492c28f28289033b
parent 1676cf72e2672b3d45c3376aa9c68123ed6e738d
Author: Sergej Orlov <wladimirych@gmail.com>
Date: Wed, 4 Dec 2019 23:03:56 +0100
config: put favicon in site root instead of /public
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/index.html b/src/index.html
@@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="shortcut icon" href="public/favicon.ico">
+ <link rel="shortcut icon" href="favicon.ico">
<title>nakarte.me</title>
<base target="_blank">
</head>
diff --git a/webpack/webpack.config.js b/webpack/webpack.config.js
@@ -53,7 +53,7 @@ const babelConfig = {
const plugins = [
new CleanWebpackPlugin(),
new CopyWebpackPlugin([
- { from: paths.appPublic, to: 'public' }
+ { from: paths.appPublic, to: '' }
]),
new HtmlWebpackPlugin({
template: paths.appIndexHtml,