I'm currently building a website using understrap themes. now in the postcss.config.js file I want to know what is this code use for. map: ctx.file.dirname.includes('examples') ?.
Here is the actual code
'use strict'
module.exports = ctx => {
return {
map: ctx.file.dirname.includes('examples') ?
false :
{
inline: false,
annotation: false,
sourcesContent: true
},
plugins: {
autoprefixer: {
cascade: false,
stylelint: false
},
"postcss-understrap-palette-generator" : {}
}
}
}