Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jsartisan/0fbe736c34a55175a6f34db6ad22413f to your computer and use it in GitHub Desktop.
Save jsartisan/0fbe736c34a55175a6f34db6ad22413f to your computer and use it in GitHub Desktop.
Resizing Images
//...
imageLoaders = imageLoaders.concat([
{
loader: 'image-webpack-loader',
options: {
bypassOnDebug: true,
},
},
{
loader: 'image-maxsize-webpack-loader',
options: {
'max-width': 1024,
'max-height': 700,
useImageMagick: false,
},
},
]);
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment