rem适配插件

module.exports={
    devServer:{
        proxy:{
            '/':{
                target:url,
                ws:false,
                pathRewrite:{
                    '^/':'/'
                }
            }
        }
    },
    css: {
        loaderOptions: {
            css: {},
            postcss: {
                plugins: [
                    require('postcss-px2rem')({
                        remUnit: 37.5
                    })
                ]
            }
        }
    },

}

你可能感兴趣的:(rem适配插件)