1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-22 01:44:25 +04:00
Files
tabler/build/postcss.config.js
2020-01-12 19:39:19 +01:00

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"
}
}
});