You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Enable/disable creating async chunks that are loaded on demand.
1024
+
*/
1025
+
asyncChunks?: boolean;
1022
1026
/**
1023
1027
* The method of loading chunks (methods included by default are 'jsonp' (web), 'import' (ESM), 'importScripts' (WebWorker), 'require' (sync node.js), 'async-node' (async node.js), but others might be added by plugins).
1024
1028
*/
@@ -1928,6 +1932,10 @@ export interface Output {
1928
1932
* The filename of asset modules as relative path inside the 'output.path' directory.
1929
1933
*/
1930
1934
assetModuleFilename?: AssetModuleFilename;
1935
+
/**
1936
+
* Enable/disable creating async chunks that are loaded on demand.
* Enable/disable creating async chunks that are loaded on demand.
2701
+
*/
2702
+
asyncChunks?: boolean;
2691
2703
/**
2692
2704
* The method of loading chunks (methods included by default are 'jsonp' (web), 'import' (ESM), 'importScripts' (WebWorker), 'require' (sync node.js), 'async-node' (async node.js), but others might be added by plugins).
-> Assign modules to a cache group (modules from different cache groups are tried to keep in separate chunks, default categories: 'default', 'defaultVendors')."
467
-
`)
456
+
"Invalid configuration object. Webpack has been initialized using a configuration object that does not match the API schema.
457
+
- configuration.optimization.splitChunks.cacheGroups should not be object { test, … }.
458
+
-> Using the cacheGroup shorthand syntax with a cache group named 'test' is a potential config error
459
+
Did you intent to define a cache group with a test instead?
-> Assign modules to a cache group (modules from different cache groups are tried to keep in separate chunks, default categories: 'default', 'defaultVendors')."
0 commit comments