mashirozx/mastodon

View on GitHub
postcss.config.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = ({ env }) => ({
  plugins: {
    autoprefixer: {},
    'postcss-object-fit-images': {},
    cssnano: env === 'production' ? {} : false,
  },
});