|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
613 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | MIT License http://www.opensource.org/licenses/mit-license.php
|
|---|
| 3 | Author Sean Larkin @thelarkinn
|
|---|
| 4 | */
|
|---|
| 5 |
|
|---|
| 6 | "use strict";
|
|---|
| 7 |
|
|---|
| 8 | const WebpackError = require("../errors/WebpackError");
|
|---|
| 9 |
|
|---|
| 10 | class NoAsyncChunksWarning extends WebpackError {
|
|---|
| 11 | constructor() {
|
|---|
| 12 | super(
|
|---|
| 13 | "webpack performance recommendations: \n" +
|
|---|
| 14 | "You can limit the size of your bundles by using import() or require.ensure to lazy load some parts of your application.\n" +
|
|---|
| 15 | "For more info visit https://webpack.js.org/guides/code-splitting/"
|
|---|
| 16 | );
|
|---|
| 17 |
|
|---|
| 18 | /** @type {string} */
|
|---|
| 19 | this.name = "NoAsyncChunksWarning";
|
|---|
| 20 | }
|
|---|
| 21 | }
|
|---|
| 22 |
|
|---|
| 23 | module.exports = NoAsyncChunksWarning;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.