mirror of
https://github.com/luc-github/ESP3D-WEBUI.git
synced 2026-03-04 23:24:04 +01:00
17 lines
443 B
JavaScript
17 lines
443 B
JavaScript
/**
|
|
* A Webpack plugin to optimize \ minimize CSS assets.
|
|
* Docs: https://github.com/NMFR/optimize-css-assets-webpack-plugin
|
|
*/
|
|
|
|
import OptimizeCSSAssetsPlugin from "optimize-css-assets-webpack-plugin"
|
|
const safePostCssParser = require("postcss-safe-parser")
|
|
|
|
export default () =>
|
|
new OptimizeCSSAssetsPlugin({
|
|
parser: safePostCssParser,
|
|
map: {
|
|
inline: false,
|
|
annotation: true,
|
|
},
|
|
})
|