aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/twbs/bootstrap/build/postcss.config.js
blob: bd307fa35da55a9c7b638bd85a548eb302abc079 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict'

module.exports = ctx => ({
  map: ctx.file.dirname.includes('examples') ? false : {
    inline: false,
    annotation: true,
    sourcesContent: true
  },
  plugins: {
    autoprefixer: {
      cascade: false
    }
  }
})