1234567891011121314151617181920212223 |
- module.exports = {
- plugins: {
- autoprefixer: {},
- ...(process.env.NODE_ENV === 'production' ? { cssnano: {} } : {}),
- 'postcss-px-to-viewport-8-plugin': {
- unitToConvert: 'px',
- viewportWidth: 1680,
- unitPrecision: 5,
- propList: ['*'],
- viewportUnit: 'vw',
- fontViewportUnit: 'vw',
- selectorBlackList: [],
- minPixelValue: 1,
- mediaQuery: false,
- replace: true,
- exclude: undefined,
- include: undefined,
- landscape: false,
- landscapeUnit: 'vw',
- landscapeWidth: undefined,
- },
- },
- }
|