mirror of
https://github.com/fluxerapp/fluxer.git
synced 2026-09-02 21:04:06 +03:00
27 lines
564 B
JavaScript
27 lines
564 B
JavaScript
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
import autoprefixer from 'autoprefixer';
|
|
import postcssDiscardComments from 'postcss-discard-comments';
|
|
import postcssPresetEnv from 'postcss-preset-env';
|
|
|
|
export default {
|
|
plugins: [
|
|
postcssDiscardComments({
|
|
removeAll: true,
|
|
}),
|
|
postcssPresetEnv({
|
|
stage: 3,
|
|
features: {
|
|
'nesting-rules': true,
|
|
'custom-properties': true,
|
|
'custom-media-queries': true,
|
|
},
|
|
browsers: 'last 10 years, > 0.5%, not dead',
|
|
}),
|
|
autoprefixer({
|
|
flexbox: 'no-2009',
|
|
grid: 'no-autoplace',
|
|
}),
|
|
],
|
|
};
|