mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
21 lines
546 B
JavaScript
21 lines
546 B
JavaScript
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 = {
|
|
plugins: [
|
|
autoprefixer(),
|
|
postcssMediaMinmax,
|
|
customMedia,
|
|
atImport(),
|
|
postcssNested,
|
|
postcssEnvFunction({
|
|
importFrom: './src/lib/util/environmentVariables.json'
|
|
})
|
|
]
|
|
};
|
|
|
|
module.exports = config;
|