vue.config.js 384 B

123456789101112131415161718
  1. // const px2rem = require('postcss-px2rem')
  2. // const postcss = px2rem({
  3. // remUnit: 12 //基准大小 baseSize,需要和rem.js中相同
  4. // })
  5. module.exports = {
  6. publicPath: "./",
  7. //px转rem的配置(postcss-plugin-px2rem插件)
  8. // css: {
  9. // loaderOptions: {
  10. // postcss: {
  11. // plugins: [
  12. // postcss
  13. // ]
  14. // }
  15. // }
  16. // }
  17. }