This repository was archived by the owner on Mar 17, 2021. It is now read-only.
This repository was archived by the owner on Mar 17, 2021. It is now read-only.
default fallback options #143
Closed
Description
url-loader v1.1.0
it work
{
loader: 'url-loader',
options: {
fallback: 'file-loader',
limit: 10240,
outputPath: 'img',
name: '[name].[hash:8].[ext]',
},
}
no fallback, it not work
{
loader: 'url-loader',
options: {
limit: 10240,
outputPath: 'img', // not work
name: '[name].[hash:8].[ext]', // not work
},
}