Server IP : 162.213.251.212 / Your IP : 3.23.129.149 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/home/allssztx/public_html/easybuyer/node_modules/cssnano/ |
Upload File : |
/* * 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); });