2016-11-29 08:58:02 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Sean Larkin @thelarkinn
|
|
|
|
*/
|
|
|
|
function NoAsyncChunksWarning() {
|
|
|
|
Error.call(this);
|
|
|
|
Error.captureStackTrace(this, NoAsyncChunksWarning);
|
|
|
|
this.name = "NoAsyncChunksWarning";
|
|
|
|
|
|
|
|
this.message = "webpack performance recommendations: \n" +
|
|
|
|
"You can limit the size of your bundles by using System.import() or require.ensure to lazy load some parts of your application.\n" +
|
2016-11-30 16:25:44 +08:00
|
|
|
"For more info visit https://webpack.js.org/guides/code-splitting/";
|
2016-11-29 08:58:02 +08:00
|
|
|
}
|
|
|
|
module.exports = NoAsyncChunksWarning;
|
|
|
|
|
|
|
|
NoAsyncChunksWarning.prototype = Object.create(Error.prototype);
|
|
|
|
NoAsyncChunksWarning.prototype.constructor = NoAsyncChunksWarning;
|