Skip to content
This repository has been archived by the owner on Mar 7, 2021. It is now read-only.
/ stryve Public archive

Commit

Permalink
removed image-webpack-loader
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklaw5 committed Jun 19, 2016
1 parent 7c83cd0 commit 2611e80
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
"emojify.js": "^1.1.0",
"file-loader": "^0.8.4",
"font-awesome-webpack": "0.0.4",
"image-webpack-loader": "^1.8.0",
"json": "^9.0.3",
"json-loader": "^0.5.4",
"lodash": "^4.7.0",
Expand Down
11 changes: 6 additions & 5 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@ module.exports = {
loader: "style-loader!css-loader"
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
loaders: [
'file?hash=sha512&digest=hex&name=[hash].[ext]',
'image-webpack?bypassOnDebug&optimizationLevel=7&interlaced=false'
]
test: /\.png|\.jpe?g|\.gif/,
loader: 'url',
query: {
limit: 10000,
name: '[name].[ext]?[hash]'
}
},
{
test: /\.woff|\.woff2|\.svg|\.eot|\.ttf/,
Expand Down

0 comments on commit 2611e80

Please sign in to comment.