UNPKG

create-mendix-widget

Version:

Create a working Mendix widget with one command.

21 lines (19 loc) 384 B
const autoprefixer = require('autoprefixer'); const postcssClean = require('postcss-clean'); const cssnano = require('cssnano'); module.exports = { plugins: [ autoprefixer, postcssClean, cssnano({ preset: [ 'default', { discardComments: { removeAll: true, }, }, ], }), ], };