mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-20 20:00:36 +03:00
postcss.config.js: remove arrow return (#32235)
This commit is contained in:
+14
-10
@@ -1,14 +1,18 @@
|
|||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
module.exports = ctx => ({
|
module.exports = ctx => {
|
||||||
map: ctx.file.dirname.includes('examples') ? false : {
|
return {
|
||||||
inline: false,
|
map: ctx.file.dirname.includes('examples') ?
|
||||||
annotation: true,
|
false :
|
||||||
sourcesContent: true
|
{
|
||||||
},
|
inline: false,
|
||||||
plugins: {
|
annotation: true,
|
||||||
autoprefixer: {
|
sourcesContent: true
|
||||||
cascade: false
|
},
|
||||||
|
plugins: {
|
||||||
|
autoprefixer: {
|
||||||
|
cascade: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user