Update postcss.config.js

pull/3306/head
Daniel 2021-01-14 15:55:12 +05:30
parent e1b6738fab
commit 39b5a9a883
1 changed files with 9 additions and 6 deletions

View File

@ -1,14 +1,17 @@
'use strict' 'use strict'
module.exports = () => ({ module.exports = {
map: { map: {
inline: false, inline: false,
annotation: true, annotation: true,
sourcesContent: true sourcesContent: true
}, },
plugins: { plugins: [
autoprefixer: { require('postcss-scrollbar')({
edgeAutohide: true
}),
require('autoprefixer')({
cascade: false cascade: false
} })
} ]
}) }