forked from integrated_whb/integrated_whb_vue
23 lines
622 B
JavaScript
23 lines
622 B
JavaScript
const path = require('path')
|
|
module.exports = {
|
|
plugins: {
|
|
autoprefixer: {
|
|
overrideBrowserslist: ['Android 4.1', 'iOS 7.1', 'Chrome > 31', 'ff > 31', 'ie >= 8', '> 1%'],
|
|
grid: true,
|
|
},
|
|
// '@our-patches/postcss-px-to-viewport': {
|
|
// unitToConvert: 'px',
|
|
// viewportWidth: 1920,
|
|
// unitPrecision: 3,
|
|
// viewportUnit: 'vw',
|
|
// selectorBlackList: ['.ignore', '.hairlines'],
|
|
// minPixelValue: 1,
|
|
// mediaQuery: false,
|
|
// exclude: [/^node_modules$/],
|
|
// include: [/BI/],
|
|
// landscapeUnit: 'vw',
|
|
// landscapeWidth: 750,
|
|
// }
|
|
},
|
|
};
|