mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
18 lines
328 B
JavaScript
18 lines
328 B
JavaScript
const postcssPresetEnv = require('postcss-preset-env');
|
|
const atImport = require('postcss-import');
|
|
|
|
const config = {
|
|
plugins: [
|
|
atImport(),
|
|
postcssPresetEnv({
|
|
stage: 3,
|
|
features: {
|
|
'nesting-rules': true,
|
|
'custom-media-queries': true,
|
|
'media-query-ranges': true,
|
|
}
|
|
})
|
|
]
|
|
};
|
|
|
|
module.exports = config;
|