mirror of https://github.com/ColorlibHQ/AdminLTE
18 lines
267 B
JavaScript
18 lines
267 B
JavaScript
|
'use strict'
|
||
|
|
||
|
module.exports = ctx => {
|
||
|
return {
|
||
|
map: {
|
||
|
inline: false,
|
||
|
annotation: true,
|
||
|
sourcesContent: true
|
||
|
},
|
||
|
plugins: {
|
||
|
autoprefixer: {
|
||
|
cascade: false
|
||
|
},
|
||
|
rtlcss: ctx.env === 'RTL' ? {} : false
|
||
|
}
|
||
|
}
|
||
|
}
|