mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-17 21:20:23 +00:00
12 lines
224 B
JavaScript
12 lines
224 B
JavaScript
module.exports = (ctx) => ({
|
|
map: ctx.file.dirname.includes('examples') ? false : {
|
|
inline: false,
|
|
annotation: true,
|
|
sourcesContent: true
|
|
},
|
|
plugins: {
|
|
autoprefixer: {
|
|
cascade: false
|
|
}
|
|
}
|
|
})
|