aboutsummaryrefslogtreecommitdiff
path: root/build/postcss.config.js
blob: 425228eaaccc4676b60389e71c28d06f7e87f6f1 (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: {}
  }
})