Initial commit
This commit is contained in:
18
apps/web/postcss.config.js
Normal file
18
apps/web/postcss.config.js
Normal file
@@ -0,0 +1,18 @@
|
||||
/** @type {import('postcss-load-config').Config} */
|
||||
const config = {
|
||||
plugins: {
|
||||
'postcss-import': {},
|
||||
'postcss-preset-env': {
|
||||
stage: 1,
|
||||
features: {
|
||||
'nesting-rules': true,
|
||||
'custom-properties': false, // already native in modern browsers
|
||||
'custom-media-queries': true,
|
||||
'media-query-ranges': true,
|
||||
},
|
||||
browsers: ['last 2 versions', 'not dead', 'not < 0.2%'],
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user