aboutsummaryrefslogtreecommitdiff
path: root/juick-www/webpack.config.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2016-09-05 00:06:40 +0300
committerGravatar Vitaly Takmazov2016-09-05 00:06:40 +0300
commit6ff862fc0a5dfd418dbe171afb79ef9d7f2dd4ba (patch)
treeee24f83bad15b484404a4a87ec1f27926d751b7d /juick-www/webpack.config.js
parentac1c6fde88579f81cd729afbbf8a3385522324f0 (diff)
extract inlined images and inline it with webpack
Diffstat (limited to 'juick-www/webpack.config.js')
-rw-r--r--juick-www/webpack.config.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/juick-www/webpack.config.js b/juick-www/webpack.config.js
index 8f4e344a..86cc3bf0 100644
--- a/juick-www/webpack.config.js
+++ b/juick-www/webpack.config.js
@@ -20,6 +20,7 @@ module.exports = {
],
loaders: [
{ test: /\.css$/, loader: ExtractTextPlugin.extract("style-loader", "css-loader") },
+ { test: /\.png$/, loader: "url-loader?limit=10000000000" },
{ test: /\.svg$/, loader: "url-loader?limit=10000000000" },
]
},