Skip to content

Commit

Permalink
feat: add autoprefixer
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanccn committed Aug 28, 2020
1 parent 1ac9fe9 commit d48aa95
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"@11ty/eleventy": "^0.11.0",
"cssnano": "^4.1.10",
"postcss-cli": "^7.1.1",
"tailwindcss": "^1.7.3"
"tailwindcss": "^1.7.3",
"autoprefixer": "^9.8.6"
}
}
11 changes: 5 additions & 6 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
const cssnano = require('cssnano')
const cssnano = require('cssnano');
const autoprefixer = require('autoprefixer');

const plugins = [
cssnano()
]
const plugins = [autoprefixer(), cssnano()];

module.exports = {
plugins
}
plugins,
};

0 comments on commit d48aa95

Please sign in to comment.