https://github.com/twbs/bootstrap
Raw File
Tip revision: 8bbcf7be22b8054bbe4d1dc2793931a3f8c31c95 authored by louismaxime.piton on 25 July 2023, 09:22:29 UTC
Change clipboard button background
Tip revision: 8bbcf7b
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