summaryrefslogtreecommitdiffstats
path: root/webapp/webpack.config.js
diff options
context:
space:
mode:
authorElias Nahum <nahumhbl@gmail.com>2016-04-01 14:00:59 -0300
committerElias Nahum <nahumhbl@gmail.com>2016-04-01 14:00:59 -0300
commit354cf3c96d1051d0c5d05e07e979bf8195e69322 (patch)
tree56daa26be1878fa6bc3056e9c2806fcc91e1bd7b /webapp/webpack.config.js
parent36f611fac48536f26770357de8d5b6767bd46d2f (diff)
downloadchat-354cf3c96d1051d0c5d05e07e979bf8195e69322.tar.gz
chat-354cf3c96d1051d0c5d05e07e979bf8195e69322.tar.bz2
chat-354cf3c96d1051d0c5d05e07e979bf8195e69322.zip
Add email images to webpack
Diffstat (limited to 'webapp/webpack.config.js')
-rw-r--r--webapp/webpack.config.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/webapp/webpack.config.js b/webapp/webpack.config.js
index 478c5de81..4e2d6b70d 100644
--- a/webapp/webpack.config.js
+++ b/webapp/webpack.config.js
@@ -77,7 +77,9 @@ var config = {
}),
htmlExtract,
new CopyWebpackPlugin([
- {from: 'images/emoji', to: 'emoji'}
+ {from: 'images/emoji', to: 'emoji'},
+ {from: 'images/logo-email.png', to: 'images'},
+ {from: 'images/circles.png', to: 'images'}
]),
new webpack.LoaderOptionsPlugin({
minimize: !DEV,