You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
448 B
24 lines
448 B
4 months ago
|
module.exports = {
|
||
|
plugins: {
|
||
|
autoprefixer: {},
|
||
|
'postcss-px-to-viewport': {
|
||
|
// options
|
||
|
unitToConvert: 'px',
|
||
|
viewportWidth: 1200,
|
||
|
unitPrecision: 2,
|
||
|
propList: ['*'],
|
||
|
viewportUnit: 'vw',
|
||
|
fontViewportUnit: 'vw',
|
||
|
selectorBlackList: [],
|
||
|
minPixelValue: 1,
|
||
|
mediaQuery: false,
|
||
|
replace: true,
|
||
|
exclude: undefined,
|
||
|
include: undefined,
|
||
|
landscape: false,
|
||
|
landscapeUnit: 'vw',
|
||
|
landscapeWidth: 700,
|
||
|
},
|
||
|
},
|
||
|
};
|