aboutsummaryrefslogblamecommitdiffstats
path: root/vendor/twbs/bootstrap/build/postcss.config.js
blob: ef416258f7fcde20fc0739c96903834462326c2c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

            












                                                

     
 
'use strict'

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