Do you want to request a feature or report a bug?
Bug/Question?
What is the current behavior?
This:
{
test: [/\.bmp$/, /\.gif$/, /\.jpe?g$/, /\.png$/],
loader: 'url-loader',
options: {
limit: 10000,
name: 'static/media/[name].[hash:8].[ext]'
}
},
will be converted to this:
{
test: [/\.bmp$/, /\.gif$/, /\.jpe?g$/, /\.png$/],
use: [{
loader: 'url-loader'
}],
options: {
limit: 10000,
name: 'static/media/[name].[hash:8].[ext]'
}
},
Question is: is this correct result or should options be grouped with the loader?
cc @sokra