fix(v2): remove no longer used postcss-present-env from dependencies (#4506)

This commit is contained in:
Armano 2021-03-29 18:04:13 +02:00 committed by GitHub
parent 11843a02fe
commit 5534affdb9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 335 deletions

View file

@ -361,14 +361,7 @@ By default, `postcssOptions` looks like this:
```js
const postcssOptions = {
ident: 'postcss',
plugins: [
require('postcss-preset-env')({
autoprefixer: {
flexbox: 'no-2009',
},
stage: 4,
}),
],
plugins: [require('autoprefixer')],
};
```