https://github.com/twbs/bootstrap
Raw File
Tip revision: 90e449b1aeefdce3787c1382ecd39c71b6c09a2f authored by Mark Otto on 11 January 2024, 21:55:03 UTC
Merge branch 'main' into main-jd-color-modes-progress-bars
Tip revision: 90e449b
postcss.config.mjs
const mapConfig = {
  inline: false,
  annotation: true,
  sourcesContent: true
}

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