Autoprefixer is a PostCSS plugin which parses your CSS and adds vendor prefixes. This is implemented by leveraging Hugo PostCSS Pipe functions.
- nodejs to install the necessary dependances.
- Hugo to run and compile the site. Hugo installation instructions can be found at http://www.gohugo.io.
$ npm install
$ npm run start
or $ hugo server
$ npm run build
This will create a /public
folder that contains all your production ready files.
You can find the supported range of browsers and their versions in the postcss.config.js
"browserslist": [
"last 1 major version",
">= 1%",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
]