diff --git a/config/webpack.config.js b/config/webpack.config.js
index 64de2056..24a28524 100644
--- a/config/webpack.config.js
+++ b/config/webpack.config.js
@@ -3,6 +3,7 @@ var webpack = require('webpack');
var path = require('path');
var loaders = require('./webpack.loaders');
var HtmlWebpackPlugin = require('html-webpack-plugin');
+var CopyWebpackPlugin = require('copy-webpack-plugin');
const HOST = process.env.HOST || "127.0.0.1";
const PORT = process.env.PORT || "8888";
@@ -59,6 +60,12 @@ module.exports = {
new HtmlWebpackPlugin({
title: 'Maputnik',
template: './src/template.html'
- })
+ }),
+ new CopyWebpackPlugin([
+ {
+ from: './src/manifest.json',
+ to: 'manifest.json'
+ }
+ ])
]
};
diff --git a/package.json b/package.json
index 94de1c9c..299501f6 100644
--- a/package.json
+++ b/package.json
@@ -99,6 +99,7 @@
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"base64-loader": "^1.0.0",
+ "copy-webpack-plugin": "^4.2.0",
"css-loader": "^0.28.7",
"eslint": "^4.10.0",
"eslint-plugin-react": "^7.4.0",
diff --git a/src/components/icons/LineIcon.jsx b/src/components/icons/LineIcon.jsx
index ab5acbdc..67e54035 100644
--- a/src/components/icons/LineIcon.jsx
+++ b/src/components/icons/LineIcon.jsx
@@ -6,7 +6,7 @@ export default class FillIcon extends React.Component {
render() {
return (