2017-08-04 02:07:40 +02:00
|
|
|
const options = {
|
2018-02-13 20:32:59 +01:00
|
|
|
plugins: {
|
|
|
|
'postcss-import': {},
|
|
|
|
'postcss-cssnext': {},
|
|
|
|
'css-mqpacker': {}
|
|
|
|
}
|
2017-08-04 02:07:40 +02:00
|
|
|
};
|
|
|
|
|
2018-02-13 20:32:59 +01:00
|
|
|
if (process.env.NODE_ENV === 'development') {
|
2017-08-04 02:07:40 +02:00
|
|
|
options.map = { inline: true };
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = options;
|