You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.5 KiB
29 lines
1.5 KiB
const path = require('path');
|
|
|
|
module.exports = ({ webpack }) => {
|
|
const designWidth = webpack.resourcePath.includes(path.join('node_modules', 'element')) ? 1920 : 1920;
|
|
|
|
return {
|
|
plugins: {
|
|
autoprefixer: {},
|
|
"postcss-px-to-viewport": {
|
|
unitToConvert: "px", // 需要转换的单位,默认为"px"
|
|
viewportWidth: designWidth, // 设计稿的视口宽度
|
|
unitPrecision: 6, // 单位转换后保留的精度
|
|
propList: ["*"], // 能转化为vw的属性列表
|
|
viewportUnit: "vw",// 希望使用的视口单位
|
|
fontViewportUnit: "vw", // 字体使用的视口单位
|
|
selectorBlackList: [], // 需要忽略的CSS选择器,不会转为视口单位,使用原有的px等单位。
|
|
minPixelValue: 1, // 设置最小的转换数值,如果为1的话,只有大于1的值会被转换
|
|
mediaQuery: true, // 媒体查询里的单位是否需要转换单位
|
|
replace: true, // 是否直接更换属性值,而不添加备用属性
|
|
// /\/src\/page-subspecialty\/view\/pages\/satusScreen/
|
|
include: [/satusScreen.vue/], // 如果设置了include,那将只有匹配到的文件才会被转换,例如只转换 'src/mobile' 下的文件 (include: /\/src\/mobile\//)
|
|
landscape: false, // 是否添加根据 landscapeWidth 生成的媒体查询条件 @media (orientation: landscape)
|
|
landscapeUnit: 'vw', // 横屏时使用的单位
|
|
landscapeWidth: 1920 // 横屏时使用的视口宽度
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|