1
0
Fork 0
mirror of https://github.com/glitch-soc/mastodon.git synced 2024-05-15 13:43:52 -04:00
mastodon/postcss.config.js
2024-04-15 09:06:06 +00:00

11 lines
247 B
JavaScript

/** @type {import('postcss-load-config').Config} */
const config = ({ env }) => ({
plugins: [
require('postcss-preset-env'),
require('autoprefixer'),
env === 'production' ? require('cssnano') : '',
],
});
module.exports = config;