Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: ExtractCssChunksPlugin.loader is a string (#291)
Because else it doesn't work with: ``` { loader: CssExtractPlugin.loader, options: { hmr: !production && target !== 'node' }, } ``` type Loader is `string | NewLoader` and `NewLoader` is: ``` interface NewLoader { loader: string; options?: { [name: string]: any }; } ```
- Loading branch information