mini-css-extract-plugin
mini-css-extract-plugin copied to clipboard
Lightweight CSS extraction plugin
- Operating System: - Node Version: >6.9.0 - NPM Version: - webpack Version: > 5 - mini-css-extract-plugin Version: 0.9.0 ### Feature Proposal I don't know if this would even be...
I'm using setup from getting-started webpack page: const path = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); const MiniCssExtractPlugin = require("mini-css-extract-plugin"); module.exports = { mode: 'development', entry: './src/index.js', devtool: 'inline-source-map', devServer: {...
### Bug report Once built our CSS file tries to load external assets from `webpack:///mini-css-extract-plugin/`. It happens to fonts that loads with a relative path. But **not** when the font...
### Feature Proposal ### Feature Use Case I want to use webpack to bundle npm packages and component libraries that come with css/scss. Currently, mini-css treats css resources as side...
### Bug report I want split css chunks from one bundle to multiple for better parallel loading using webpack split chunks config, and found the chunks loading sort is not...
### Bug report ### How Do We Reproduce? You may refer to this repo directly: https://github.com/h-a-n-a/issue_0616_mini_css_hmr ### Please paste the results of `npx webpack-cli info` here, and mention other relevant...
This PR contains a: - [ ] **bugfix** - [ ] new **feature** - [ ] **code refactor** - [ ] **test update** - [ ] **typo fix** - [x]...
### Bug report ### Actual Behavior In the sample project, it hangs indefinitely at 28%. ### Expected Behavior The project should build successfully. In the sample project, it should build...
### Feature Proposal Either change the default or add an option for making CSS bundle requests non-render-blocking. This is currently possible by using a custom `insert` function, but an explicit...
### Bug report Chunks aren't split properly for CSS when using `mini-css-extract-plugin@>=2.4.0` (or older together with `experimentalUseImportModule: true`). This is mainly the same as https://github.com/webpack-contrib/mini-css-extract-plugin/issues/850 but that was closed. ###...