https://github.com/twbs/bootstrap
Raw File
Tip revision: 680b933f68422fac3aa485cc47d160104678dd38 authored by GeoSot on 17 September 2022, 15:39:50 UTC
add more
Tip revision: 680b933
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