webpack/schemas/plugins/optimize/AggressiveSplittingPlugin.json

24 lines
615 B
JSON
Raw Permalink Normal View History

2017-10-28 05:23:38 +08:00
{
2018-09-21 18:11:12 +08:00
"title": "AggressiveSplittingPluginOptions",
2017-11-19 18:45:15 +08:00
"type": "object",
"additionalProperties": false,
"properties": {
"chunkOverhead": {
"description": "Extra cost for each chunk (Default: 9.8kiB).",
2017-11-19 18:45:15 +08:00
"type": "number"
},
"entryChunkMultiplicator": {
"description": "Extra cost multiplicator for entry chunks (Default: 10).",
2017-11-19 18:45:15 +08:00
"type": "number"
2018-09-21 17:54:35 +08:00
},
"maxSize": {
2020-03-13 00:51:26 +08:00
"description": "Byte, max size of per file (Default: 50kiB).",
2018-09-21 17:54:35 +08:00
"type": "number"
},
"minSize": {
"description": "Byte, split point. (Default: 30kiB).",
2018-09-21 17:54:35 +08:00
"type": "number"
2017-11-19 18:45:15 +08:00
}
}
2017-10-28 05:23:38 +08:00
}