{ "title": "Mini CSS Extract Plugin options", "type": "object", "additionalProperties": false, "properties": { "filename": { "anyOf": [ { "type": "string" }, { "instanceof": "Function" } ], "description": "This option determines the name of each output CSS file.", "link": "https://github.com/webpack-contrib/mini-css-extract-plugin#filename" }, "chunkFilename": { "anyOf": [ { "type": "string" }, { "instanceof": "Function" } ], "description": "This option determines the name of non-entry chunk files.", "link": "https://github.com/webpack-contrib/mini-css-extract-plugin#chunkfilename" }, "experimentalUseImportModule": { "type": "boolean", "description": "Enable the experimental importModule approach instead of using child compilers. This uses less memory and is faster.", "link": "https://github.com/webpack-contrib/mini-css-extract-plugin#experimentaluseimportmodule" }, "ignoreOrder": { "type": "boolean", "description": "Remove Order Warnings.", "link": "https://github.com/webpack-contrib/mini-css-extract-plugin#ignoreorder" }, "insert": { "description": "Inserts `` at the given position.", "link": "https://github.com/webpack-contrib/mini-css-extract-plugin#insert", "anyOf": [ { "type": "string" }, { "instanceof": "Function" } ] }, "attributes": { "description": "Adds custom attributes to tag.", "link": "https://github.com/webpack-contrib/mini-css-extract-plugin#attributes", "type": "object" }, "linkType": { "anyOf": [ { "enum": ["text/css"] }, { "type": "boolean" } ], "description": "This option allows loading asynchronous chunks with a custom link type", "link": "https://github.com/webpack-contrib/mini-css-extract-plugin#linktype" } } }