webpack/schemas/plugins/optimize/LimitChunkCountPlugin.json

22 lines
557 B
JSON
Raw Permalink Normal View History

2017-10-28 05:23:38 +08:00
{
2018-09-21 18:11:12 +08:00
"title": "LimitChunkCountPluginOptions",
2017-11-19 18:45:15 +08:00
"type": "object",
"additionalProperties": false,
"properties": {
2018-09-25 22:07:42 +08:00
"chunkOverhead": {
"description": "Constant overhead for a chunk.",
2018-09-25 22:07:42 +08:00
"type": "number"
},
"entryChunkMultiplicator": {
"description": "Multiplicator for initial chunks.",
2018-09-25 22:07:42 +08:00
"type": "number"
},
2017-11-19 18:45:15 +08:00
"maxChunks": {
"description": "Limit the maximum number of chunks using a value greater greater than or equal to 1.",
2017-11-19 18:45:15 +08:00
"type": "number",
"minimum": 1
}
},
"required": ["maxChunks"]
2017-10-28 05:23:38 +08:00
}