This repository was archived by the owner on Mar 17, 2021. It is now read-only.

Description
The following working config in 1.0.1:
{
test: /\.(png|jpg|gif|svg)$/,
loader: 'url-loader',
options: {
limit: 2048,
name: 'img/[name].[hash:8].[ext]'
}
}
does not work with version 1.1.0, i.e., the 'name' option is not passed to the default fallback 'file-loader'.
Is this on purpose or is it a bug?