mini-css-extract-plugin icon indicating copy to clipboard operation
mini-css-extract-plugin copied to clipboard

Lightweight CSS extraction plugin

Results 87 mini-css-extract-plugin issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi, I'm maintaining [webpack-subresource-integrity](https://github.com/waysact/webpack-subresource-integrity) and I'd like to help make the two plugins work together, to ensure integrity for injected `link rel="stylesheet"` tags. For this there would need to be...

help wanted
type: feature
severity: 4 (inconvenient)
priority: 4 (nice to have)

Hey friends :wave: I've got a minimal example of what I'm trying to do here: https://github.com/kentcdodds/tree-shake-css And I even have a video showing what I'm trying to accomplish here: youtube.com/watch?v=Q_F-c0LEp4I&t=749s&list=PLV5CVI1eNcJgCrPH_e6d57KRUTiDZgs0u...

I am not completely sure if this is a bug or feature request, but it is not possible now to skip some imported module if extact css plugin is used....

type: bug
semver: patch
priority: 3 (important)
severity: 3 (broken)

`MCEP` use `load` event to resolve the promise, while the event is not supported well on some old browser, like Android 4.3 webview. It breaks the **webpack** `dynamic import` feature,...

When using the mini-css-extract-plugin in a setup where filename templates for both JS and CSS use the `[chunkhash]` substitution: ```js { output: { filename: '[name].[chunkhash].js' }, plugins: [ new MiniCssExtractPlugin(...

## Condition Suppose I have a project have two entry file `foo-entry.js` and `bar-entry.js`, both of them import `es6-promise` and `normalize.css`. Additionally `foo-entry` may also import other modules, e.g. `object-assign`....

type: bug
priority: 3 (important)
severity: 5 (confusing)

Hi there) I wrote [a-webpack-plugin](https://github.com/Diokuz/a-webpack-plugin) which makes it possible to generate super short css classNames, like `.a` `.b`... `.zz` ... My plugin works with ExtractTextPlugin, and it doesn't with `mini-css-extract-plugin`...

question

### Feature Proposal The feature I am trying to implement is filtering entry chunks from which CSS will be extracted. Any chance it can be done using `filename` function syntax...

### Bug report We have an issue best described below we have three entry points defined in webpack ``` entry: { app: './src/client/app.js', widget: './src/client/template/widget.js', 'common/widget': './src/client/template/common/widget.js', }, ``` with...

### Feature Proposal Add feature for insert option, which allows to setup absolute path to custom function that allows to override default behavior and insert styles at any position, like...