aboutsummaryrefslogtreecommitdiff
path: root/build/postcss.config.js
blob: 7394ba382e8dbd92be36825c92251376cc92a08e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module.exports = (ctx) => ({
  map: ctx.file.dirname.includes('examples') ? false : {
    inline: false,
    annotation: true,
    sourcesContent: true
  },
  plugins: {
    autoprefixer: {
      cascade: false
    }
  }
})