1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-21 08:31:31 +02:00
send/postcss.config.js
2017-08-07 16:19:40 -07:00

16 lines
331 B
JavaScript

const autoprefixer = require('autoprefixer');
const cssnano = require('cssnano');
const mqpacker = require('css-mqpacker');
const conf = require('./server/config');
const options = {
plugins: [autoprefixer, mqpacker, cssnano]
};
if (conf.env === 'development') {
options.map = { inline: true };
}
module.exports = options;