UNPKG

webpack-genius

Version:

**For chinese developers:** you'd better add taobao mirror before everything start. Or you may fail to install. ```bash yarn config set registry http://registry.npm.taobao.org ```

11 lines (10 loc) 409 B
import MiniCssExtractPlugin from 'mini-css-extract-plugin'; import { Plugin } from 'webpack'; import { PluginHandle } from './PluginHandle'; export declare class MiniCss extends PluginHandle { protected readonly config: MiniCssExtractPlugin.PluginOptions; setFilename(name: string): this; setChunkFilename(name: string): this; setIgnoreOrder(ignore: boolean): this; collect(): Plugin[]; }