mirror of
https://github.com/tabler/tabler.git
synced 2025-12-21 17:34:25 +04:00
17 lines
254 B
JavaScript
17 lines
254 B
JavaScript
'use strict';
|
|
|
|
module.exports = ctx => ({
|
|
map: ctx.file.dirname.includes('examples') ?
|
|
false :
|
|
{
|
|
inline: false,
|
|
annotation: true,
|
|
sourcesContent: true
|
|
},
|
|
plugins: {
|
|
autoprefixer: {
|
|
cascade: false
|
|
}
|
|
}
|
|
});
|