diff options
author | Vitaly Takmazov | 2016-08-25 01:02:27 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2016-08-25 01:19:11 +0300 |
commit | dd132c3ef780200aebe3939f9249879495212d8a (patch) | |
tree | c610c06a6fc417dab92df4736704aeeb8143f3cd /juick-www/webpack.config.js | |
parent | f02157b46f0a922ae437f094fbb2b3cec1a53761 (diff) |
www: evil icons
Diffstat (limited to 'juick-www/webpack.config.js')
-rw-r--r-- | juick-www/webpack.config.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/juick-www/webpack.config.js b/juick-www/webpack.config.js index ace447f6..8f4e344a 100644 --- a/juick-www/webpack.config.js +++ b/juick-www/webpack.config.js @@ -6,7 +6,8 @@ module.exports = { entry: { "scripts" : globby.sync([ __dirname + "/src/main/static/*.*", - require.resolve('font-awesome/css/font-awesome.css') + require.resolve('evil-icons/assets/evil-icons.css'), + require.resolve('evil-icons/assets/evil-icons.js') ]) }, output: { @@ -19,8 +20,7 @@ module.exports = { ], loaders: [ { test: /\.css$/, loader: ExtractTextPlugin.extract("style-loader", "css-loader") }, - { test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "url-loader?limit=100000000000" }, - { test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "url-loader?limit=10000000000" }, + { test: /\.svg$/, loader: "url-loader?limit=10000000000" }, ] }, plugins: [ |