mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 21:20:58 +00:00
24 lines
613 B
JavaScript
24 lines
613 B
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Sean Larkin @thelarkinn
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const WebpackError = require("../errors/WebpackError");
|
|
|
|
class NoAsyncChunksWarning extends WebpackError {
|
|
constructor() {
|
|
super(
|
|
"webpack performance recommendations: \n" +
|
|
"You can limit the size of your bundles by using import() or require.ensure to lazy load some parts of your application.\n" +
|
|
"For more info visit https://webpack.js.org/guides/code-splitting/"
|
|
);
|
|
|
|
/** @type {string} */
|
|
this.name = "NoAsyncChunksWarning";
|
|
}
|
|
}
|
|
|
|
module.exports = NoAsyncChunksWarning;
|