Attempt at disabling postcss-next warnings (#11518)
This commit is contained in:
parent
cd94fb2362
commit
90c12aa824
2 changed files with 18 additions and 4 deletions
18
postcss.config.js
Normal file
18
postcss.config.js
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
/* globals module, require */
|
||||
module.exports = {
|
||||
plugins: [
|
||||
require('postcss-import'),
|
||||
require('postcss-flexbugs-fixes'),
|
||||
require('postcss-preset-env')({
|
||||
autoprefixer: {
|
||||
flexbox: 'no-2009',
|
||||
},
|
||||
stage: 3,
|
||||
features: {
|
||||
customProperties: {
|
||||
warnings: false,
|
||||
},
|
||||
},
|
||||
}),
|
||||
],
|
||||
};
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
/* globals module, require */
|
||||
module.exports = {
|
||||
plugins: [require('autoprefixer')],
|
||||
};
|
||||
Loading…
Add table
Reference in a new issue