diff --git a/build/config/postcss.config.js b/build/config/postcss.config.js index 273ee9413..0b60e2fe8 100644 --- a/build/config/postcss.config.js +++ b/build/config/postcss.config.js @@ -1,14 +1,17 @@ 'use strict' -module.exports = () => ({ +module.exports = { map: { inline: false, annotation: true, sourcesContent: true }, - plugins: { - autoprefixer: { + plugins: [ + require('postcss-scrollbar')({ + edgeAutohide: true + }), + require('autoprefixer')({ cascade: false - } - } -}) + }) + ] +}