increase the url limit back to 10000, the recommended value

This commit is contained in:
spalger 2015-07-22 11:13:34 -07:00
parent af305c79e4
commit b168382c40

View file

@ -63,7 +63,7 @@ class BaseOptimizer extends EventEmitter {
{ test: /\.css$/, loader: ExtractTextPlugin.extract('style', `css${mapQ}`) },
{ test: /\.jade$/, loader: 'jade' },
{ test: /\.(html|tmpl)$/, loader: 'raw' },
{ test: /\.png$/, loader: 'url?limit=2048!file?name=[path][name].[ext]' },
{ test: /\.png$/, loader: 'url?limit=10000!file?name=[path][name].[ext]' },
{ test: /\.(woff|woff2|ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: 'file?name=[path][name].[ext]' },
{ test: /\/src\/(plugins|ui)\/.+\.js$/, loader: 'auto-preload-rjscommon-deps' }
].concat(this.modules.loaders),