hugo-theme-bootstrap5-blog/build/postcss.config.js
Alan Orth 03072cdc38
Add PostCSS to build process
I'm not sure why we need this, but the Bootstrap build uses it and
I would like to follow their lead.

See: https://github.com/twbs/bootstrap/blob/v5.0.0-alpha3/package.json
2020-11-30 15:44:06 +02:00

17 lines
252 B
JavaScript

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