Deployed the page to Github Pages.
This commit is contained in:
parent
1d79754e93
commit
2c89899458
62797 changed files with 6551425 additions and 15279 deletions
23
node_modules/webpack/schemas/plugins/optimize/AggressiveSplittingPlugin.json
generated
vendored
Normal file
23
node_modules/webpack/schemas/plugins/optimize/AggressiveSplittingPlugin.json
generated
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"title": "AggressiveSplittingPluginOptions",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"chunkOverhead": {
|
||||
"description": "Extra cost for each chunk (Default: 9.8kiB).",
|
||||
"type": "number"
|
||||
},
|
||||
"entryChunkMultiplicator": {
|
||||
"description": "Extra cost multiplicator for entry chunks (Default: 10).",
|
||||
"type": "number"
|
||||
},
|
||||
"maxSize": {
|
||||
"description": "Byte, max size of per file (Default: 50kiB).",
|
||||
"type": "number"
|
||||
},
|
||||
"minSize": {
|
||||
"description": "Byte, split point. (Default: 30kiB).",
|
||||
"type": "number"
|
||||
}
|
||||
}
|
||||
}
|
||||
21
node_modules/webpack/schemas/plugins/optimize/LimitChunkCountPlugin.json
generated
vendored
Normal file
21
node_modules/webpack/schemas/plugins/optimize/LimitChunkCountPlugin.json
generated
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"title": "LimitChunkCountPluginOptions",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"chunkOverhead": {
|
||||
"description": "Constant overhead for a chunk.",
|
||||
"type": "number"
|
||||
},
|
||||
"entryChunkMultiplicator": {
|
||||
"description": "Multiplicator for initial chunks.",
|
||||
"type": "number"
|
||||
},
|
||||
"maxChunks": {
|
||||
"description": "Limit the maximum number of chunks using a value greater greater than or equal to 1.",
|
||||
"type": "number",
|
||||
"minimum": 1
|
||||
}
|
||||
},
|
||||
"required": ["maxChunks"]
|
||||
}
|
||||
20
node_modules/webpack/schemas/plugins/optimize/MinChunkSizePlugin.json
generated
vendored
Normal file
20
node_modules/webpack/schemas/plugins/optimize/MinChunkSizePlugin.json
generated
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"title": "MinChunkSizePluginOptions",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"chunkOverhead": {
|
||||
"description": "Constant overhead for a chunk.",
|
||||
"type": "number"
|
||||
},
|
||||
"entryChunkMultiplicator": {
|
||||
"description": "Multiplicator for initial chunks.",
|
||||
"type": "number"
|
||||
},
|
||||
"minChunkSize": {
|
||||
"description": "Minimum number of characters.",
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": ["minChunkSize"]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue