|
Last change
on this file since ae6cd79 was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
832 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | MIT License http://www.opensource.org/licenses/mit-license.php
|
|---|
| 3 | Author Arka Pratim Chaudhuri @arkapratimc
|
|---|
| 4 | */
|
|---|
| 5 |
|
|---|
| 6 | "use strict";
|
|---|
| 7 |
|
|---|
| 8 | const WebpackError = require("../errors/WebpackError");
|
|---|
| 9 |
|
|---|
| 10 | class FalseIIFEUmdWarning extends WebpackError {
|
|---|
| 11 | constructor() {
|
|---|
| 12 | super();
|
|---|
| 13 | /** @type {string} */
|
|---|
| 14 | this.name = "FalseIIFEUmdWarning";
|
|---|
| 15 | this.message =
|
|---|
| 16 | "Configuration:\nSetting 'output.iife' to 'false' is incompatible with 'output.library.type' set to 'umd'. This configuration may cause unexpected behavior, as UMD libraries are expected to use an IIFE (Immediately Invoked Function Expression) to support various module formats. Consider setting 'output.iife' to 'true' or choosing a different 'library.type' to ensure compatibility.\nLearn more: https://webpack.js.org/configuration/output/";
|
|---|
| 17 | }
|
|---|
| 18 | }
|
|---|
| 19 |
|
|---|
| 20 | module.exports = FalseIIFEUmdWarning;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.