postcss.config.js 187 B

123456789101112
  1. import { defineConfig } from 'vite'
  2. import postCssPxToRem from 'postcss-pxtorem'
  3. export default defineConfig({
  4. css: {
  5. postcss: {
  6. plugins: [
  7. ]
  8. }
  9. }
  10. })