drop.chapril.org-firefoxsend/postcss.config.js
2018-11-01 10:43:43 -07:00

15 lines
245 B
JavaScript

const options = {
plugins: {
'postcss-import': {},
tailwindcss: {},
'postcss-cssnext': {},
'css-mqpacker': {}
}
};
if (process.env.NODE_ENV === 'development') {
options.map = { inline: true };
}
module.exports = options;