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: 56b7d94cc1fa6dd32a0cb7166190fd4a11cf7e51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'use strict'

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