aboutsummaryrefslogtreecommitdiff
path: root/build/postcss.config.js
blob: c7c9a17b053edaae736c9354d7cc991bb4f6a0b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'

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