https://github.com/twbs/bootstrap
Raw File
Tip revision: cb021439c683d9805e2864c58095b92d405e9b11 authored by XhmikosR on 21 November 2022, 18:19:01 UTC
Dist
Tip revision: cb02143
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