mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-11 20:21:10 +00:00
15 lines
285 B
JavaScript
15 lines
285 B
JavaScript
const postcssPresetEnv = require('postcss-preset-env');
|
|
|
|
/** @type {import('postcss-load-config').Config} */
|
|
const config = () => ({
|
|
plugins: [
|
|
postcssPresetEnv({
|
|
features: {
|
|
'logical-properties-and-values': false
|
|
}
|
|
}),
|
|
],
|
|
});
|
|
|
|
module.exports = config;
|