optimize-css-assets-webpack-plugin
optimize-css-assets-webpack-plugin copied to clipboard
A Webpack plugin to optimize \ minimize CSS assets.
Bumps [node-notifier](https://github.com/mikaelbr/node-notifier) from 8.0.0 to 8.0.2. Changelog Sourced from node-notifier's changelog. v8.0.2 Fixes potential security issue with non-escaping input parameters for notify-send. Commits 3420977 v8.0.2 a141580 patch: fixes security issue...
This PR is suposed to resolve this: [How can we set source map target file name to a different path?](https://github.com/NMFR/optimize-css-assets-webpack-plugin/issues/91)
I am going to setup my own scaffold,and here is the project repo [https://github.com/Kilims/typescript_antd_antdMobile](https://github.com/Kilims/typescript_antd_antdMobile) while running with `yarn run start`, it could work perfectly but when i go with `yarn...
I am experiencing an issue with webpack that turns out to be quite problematic when combined with a CDN and SRI. I am unsure if the issue is actually on...
**os**: macos Mojave 10.14.2 **env**: node v8.15.0 **version**(optimize-css-assets-webpack-plugin): 3.2.1 **error**:  **sourceCode**: ``` .tab-layer { width: 100%; height: calc(~'100vh - 0.97REM'); display: flex; flex-direction: column; position: relative; } ```
 
Most open source package exposes a file CHANGELOGS.md that contains the last modification between different version. I recommend this feature to help me as a developer using this package as...
I'm on webpack 4 and have tried both options below: ```javascript optimization: { minimizer: [ new UglifyJsPlugin({uglifyOptions: cfg.js.uglify}), new OptimizeCSSAssetsPlugin({}), ] ``` and this as well: ```javascript optimization: { minimizer:...
In my webpack config file. I'm using this config ``` new OptimizeCSSAssetsPlugin({ cssProcessorOptions: { safe: true, discardComments: { removeAll: true, }, }, }) ``` When run webpack command I'm still...
Migrating a build to Webpack 4 and the new extract css methodology. I'm up and running so thanks to you for your efforts with this plugin. I have always made...