1234567891011121314151617181920212223242526272829 |
- {
- "type": "object",
- "additionalProperties": true,
- "properties": {
- "filename": {
- "type": "string"
- },
- "chunkFilename": {
- "type": "string"
- },
- "moduleFilename": {
- "instanceof": "Function"
- },
- "ignoreOrder": {
- "type": "boolean"
- },
- "insert": {
- "description": "Inserts `<link>` at the given position (https://github.com/faceyspacey/extract-css-chunks-webpack-pluginn#insert).",
- "anyOf": [
- {
- "type": "string"
- },
- {
- "instanceof": "Function"
- }
- ]
- }
- }
- }
|