https://github.com/twbs/bootstrap
Raw File
Tip revision: 961d5ff9844372a4e294980c667bbe7e0651cdeb authored by XhmikosR on 03 October 2022, 07:44:02 UTC
Release v5.2.2 (#37236)
Tip revision: 961d5ff
postcss.config.js
'use strict'

const mapConfig = {
  inline: false,
  annotation: true,
  sourcesContent: true
}

module.exports = context => {
  return {
    map: context.file.dirname.includes('examples') ? false : mapConfig,
    plugins: {
      autoprefixer: {
        cascade: false
      },
      rtlcss: context.env === 'RTL'
    }
  }
}
back to top