https://github.com/twbs/bootstrap
Raw File
Tip revision: 0129d35796c3430f6072a92ca3fb3d862427d853 authored by Daniel O on 26 July 2022, 10:53:21 UTC
Add new `.overflow-x`, `.overflow-y`, and object-fit utilities
Tip revision: 0129d35
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