.postcssrc.js 407 B

123456789101112131415
  1. // https://github.com/michael-ciniawsky/postcss-load-config
  2. module.exports = {
  3. "plugins": {
  4. "postcss-import": {},
  5. //tailwindcss: { config: './tailwind.config.js' },
  6. "postcss-url": {},
  7. // to edit target browsers: use "browserslist" field in package.json
  8. "autoprefixer": {},
  9. 'postcss-pxtorem': {
  10. rootValue: 16,
  11. propList: ['font-size'] // 只转化font-size
  12. },
  13. }
  14. }