0
0
Fork 0

Increase files checked by ESLint (#9705)

This commit is contained in:
Yamagishi Kazutoshi 2019-01-04 19:28:38 +09:00 committed by Eugen Rochko
parent c39c112ced
commit d5bdfaf0bb
7 changed files with 218 additions and 214 deletions

View file

@ -1,13 +1,7 @@
module.exports = {
module.exports = ({ env }) => ({
plugins: {
autoprefixer: {
browsers: [
'last 2 versions',
'IE >= 11',
'iOS >= 9',
],
},
autoprefixer: {},
'postcss-object-fit-images': {},
cssnano: {},
cssnano: env === 'production' ? {} : false,
},
};
});