postcss.config.js 271 B

1234567891011121314
  1. export default {
  2. plugins: {
  3. 'autoprefixer': {},
  4. 'postcss-nested': {},
  5. 'postcss-mobile-forever': {
  6. viewportWidth: 375,
  7. maxDisplayWidth: 600,
  8. border: true,
  9. rootContainingBlockSelectorList: [
  10. 'van-popup',
  11. ],
  12. },
  13. },
  14. }