mirror of
https://github.com/mastodon/mastodon.git
synced 2025-09-05 17:31:12 +00:00
10 lines
187 B
JavaScript
10 lines
187 B
JavaScript
/** @type {import('postcss-load-config').Config} */
|
|
const config = () => ({
|
|
plugins: [
|
|
require('postcss-preset-env'),
|
|
require('autoprefixer')
|
|
],
|
|
});
|
|
|
|
module.exports = config;
|