![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/vreg/node_modules/cssnano/ |
/* * This example targets Node 4 and up. */ const cssnano = require('cssnano'); /* * Add your CSS code here. */ const css = ` h1 { color: #ff0000; font-weight: bold; } `; /* * Add any PostCSS options here. For example to enable sourcemaps, see: * https://github.com/postcss/postcss/blob/master/site/source-maps.md * * Or for an inline sourcemap, uncomment the options below. */ const postcssOpts = { // from: 'app.css', // to: 'app.min.css', // map: {inline: true}, }; /* * Add your choice of preset. Note that for any value other * than 'default', you will need to install the appropriate * preset separately. */ const cssnanoOpts = { preset: 'default', }; /* * Compress the CSS asynchronously and log it to the console. */ cssnano.process(css, postcssOpts, cssnanoOpts).then(result => { console.log(result.css); });