mastodon/postcss.config.js

16 lines
344 B
JavaScript
Raw Permalink Normal View History

const postcssPresetEnv = require('postcss-preset-env');
2024-04-15 09:06:06 +00:00
/** @type {import('postcss-load-config').Config} */
const config = ({ env }) => ({
2023-03-15 03:01:10 +00:00
plugins: [
postcssPresetEnv({
features: {
'logical-properties-and-values': false
}
}),
2024-04-15 09:06:06 +00:00
env === 'production' ? require('cssnano') : '',
2023-03-15 03:01:10 +00:00
],
});
2024-04-15 09:06:06 +00:00
module.exports = config;