https://github.com/twbs/bootstrap
Raw File
Tip revision: ddcb9a358509ec575fb207905629144a83974e0b authored by louismaximepiton on 17 July 2023, 14:51:10 UTC
.
Tip revision: ddcb9a3
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