123456789101112131415161718 |
- // const px2rem = require('postcss-px2rem')
- // const postcss = px2rem({
- // remUnit: 12 //基准大小 baseSize,需要和rem.js中相同
- // })
- module.exports = {
- publicPath: "./",
- //px转rem的配置(postcss-plugin-px2rem插件)
- // css: {
- // loaderOptions: {
- // postcss: {
- // plugins: [
- // postcss
- // ]
- // }
- // }
- // }
- }
|