There was an error while loading. Please reload this page.
1 parent 93ae6bc commit 785cfd5Copy full SHA for 785cfd5
1 file changed
lib/performance/NoAsyncChunksWarning.js
@@ -0,0 +1,17 @@
1
+/*
2
+ MIT License http://www.opensource.org/licenses/mit-license.php
3
+ Author Sean Larkin @thelarkinn
4
+*/
5
+function NoAsyncChunksWarning() {
6
+ Error.call(this);
7
+ Error.captureStackTrace(this, NoAsyncChunksWarning);
8
+ this.name = "NoAsyncChunksWarning";
9
+
10
+ this.message = "webpack performance recommendations: \n" +
11
+ "You can limit the size of your bundles by using System.import() or require.ensure to lazy load some parts of your application.\n" +
12
+ "For more info visit https://webpack.github.io/docs/code-splitting.html";
13
+}
14
+module.exports = NoAsyncChunksWarning;
15
16
+NoAsyncChunksWarning.prototype = Object.create(Error.prototype);
17
+NoAsyncChunksWarning.prototype.constructor = NoAsyncChunksWarning;
0 commit comments