Use PostCSS

This commit is contained in:
Pig Fang 2018-07-30 09:45:01 +08:00
parent b666f59554
commit f88096a15f
2 changed files with 9 additions and 0 deletions

3
.browserslistrc Normal file
View File

@ -0,0 +1,3 @@
> 1%
last 2 versions
not dead

6
postcss.config.js Normal file
View File

@ -0,0 +1,6 @@
module.exports = {
plugins: [
require('autoprefixer'),
require('cssnano')
]
};