Created
May 31, 2018 05:04
-
-
Save jsartisan/0fbe736c34a55175a6f34db6ad22413f to your computer and use it in GitHub Desktop.
Resizing Images
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//... | |
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