.postcssrc.js 194 B

123456789
  1. // PostCSS config for uni-app
  2. const path = require('path');
  3. module.exports = {
  4. plugins: {
  5. 'autoprefixer': {
  6. overrideBrowserslist: ['> 1%', 'last 2 versions', 'not dead']
  7. }
  8. }
  9. }