https://github.com/twbs/bootstrap
Raw File
Tip revision: b083c9639fd9012e5cba57d6c4088d43b3c3e57d authored by XhmikosR on 29 September 2020, 15:33:00 UTC
Prepare v5.0.0-alpha2. (#31748)
Tip revision: b083c96
postcss.config.js
'use strict'

module.exports = ctx => ({
  map: ctx.file.dirname.includes('examples') ?
    false :
    {
      inline: false,
      annotation: true,
      sourcesContent: true
    },
  plugins: {
    autoprefixer: {
      cascade: false
    }
  }
})
back to top