1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

Set autoprefixer's cascade option to false. (#24459)

This saves a few bytes from the unminified dist files.
This commit is contained in:
XhmikosR 2017-10-22 15:23:23 +03:00 committed by GitHub
parent 060258f9be
commit c70eaa156f

View file

@ -7,6 +7,6 @@ module.exports = (ctx) => ({
sourcesContent: true
},
plugins: {
autoprefixer: {}
autoprefixer: { cascade: false }
}
})