Welcome to mirror list, hosted at ThFree Co, Russian Federation.

postcss.config.js « build - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
    }
  }
})