- Removed unnecessary url-loader targeting .woff files - Replaced file-loader with url-loader (file is fallback for url) - PostCSS plugins are all loaded manually vs postcss.config.js
16 lines
362 B
JavaScript
16 lines
362 B
JavaScript
/* eslint-disable */
|
|
|
|
const cssnanoConfig = {
|
|
preset: ['default', { discardComments: { removeAll: true } }]
|
|
};
|
|
|
|
module.exports = ({ file, options }) => {
|
|
return {
|
|
parser: options.enabled.optimize ? 'postcss-safe-parser' : undefined,
|
|
plugins: {
|
|
cssnano: options.enabled.optimize ? cssnanoConfig : false,
|
|
autoprefixer: true,
|
|
},
|
|
};
|
|
};
|