https://github.com/twbs/bootstrap
Raw File
Tip revision: 384eccbfaf3f234944f8d60ac70dd7966814c994 authored by XhmikosR on 11 November 2020, 17:07:37 UTC
Prepare v5.0.0-alpha3 (#32122)
Tip revision: 384eccb
postcss.config.js
'use strict'

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