24
1
Fork 0
drop.chapril.org-firefoxsend/postcss.config.js

15 lines
245 B
JavaScript
Raw Normal View History

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