Skip to content

Instantly share code, notes, and snippets.

@seogi1004
Last active November 23, 2018 16:39
Show Gist options
  • Save seogi1004/f4cc3ffc7b3ea7f25d7d11cae8070f83 to your computer and use it in GitHub Desktop.
Save seogi1004/f4cc3ffc7b3ea7f25d7d11cae8070f83 to your computer and use it in GitHub Desktop.
...
return {
...
module: {
rules: [].concat([ env == 'production' ?
{
test: /\.(jpe?g|png|gif|svg)$/i,
use: [{
loader: 'file-loader',
options: {
name: '[hash].[ext]',
outputPath: '/images',
publicPath: '/bundles/images'
}
}]
} : {
test: /\.(jpe?g|png|gif|svg)$/i,
use: [{
loader: 'url-loader',
options: {
limit: 1024 * 1024
}
}]
}
])
},
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment