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: bd307fa35da55a9c7b638bd85a548eb302abc079 (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
    }
  }
})