2022-12-01 18:29:24 +00:00
|
|
|
const autoprefixer = require('autoprefixer');
|
|
|
|
|
const postcssMediaMinmax = require('postcss-media-minmax');
|
|
|
|
|
const customMedia = require('postcss-custom-media');
|
|
|
|
|
const atImport = require('postcss-import');
|
|
|
|
|
const postcssNested = require('postcss-nested');
|
|
|
|
|
const postcssEnvFunction = require('postcss-env-function');
|
|
|
|
|
|
|
|
|
|
const config = {
|
2023-01-14 05:13:59 +00:00
|
|
|
plugins: [
|
|
|
|
|
autoprefixer(),
|
|
|
|
|
postcssMediaMinmax,
|
|
|
|
|
customMedia,
|
|
|
|
|
atImport(),
|
|
|
|
|
postcssNested,
|
|
|
|
|
postcssEnvFunction({
|
2023-01-17 07:07:15 +00:00
|
|
|
importFrom: './src/lib/util/environmentVariables.json'
|
2023-01-14 05:13:59 +00:00
|
|
|
})
|
|
|
|
|
]
|
2022-12-01 18:29:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
module.exports = config;
|