aboutsummaryrefslogtreecommitdiff
path: root/themes/docsy/assets/vendor/bootstrap/build/postcss.config.js
blob: 157291ffd2e2a77e2ff31f64b547cb5d83b2c95c (plain)
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
    }
  }
})