https://github.com/twbs/bootstrap
Raw File
Tip revision: fca04c07131a81e625a516cf7b98a8c7df0df1c1 authored by XhmikosR on 13 May 2022, 06:07:23 UTC
Dist
Tip revision: fca04c0
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