mirror of
https://github.com/tabler/tabler.git
synced 2025-12-22 01:44:25 +04:00
23 lines
392 B
JavaScript
23 lines
392 B
JavaScript
/*
|
|
* Tabler (v0.9.0): postcss.config.js
|
|
* Copyright 2018-2019 The Tabler Authors
|
|
* Copyright 2018-2019 codecalm
|
|
* Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE)
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = ctx => ({
|
|
map: {
|
|
inline: false,
|
|
annotation: true,
|
|
sourcesContent: true
|
|
},
|
|
plugins: {
|
|
autoprefixer: {
|
|
cascade: false,
|
|
grid: "autoplace"
|
|
}
|
|
}
|
|
});
|