Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- module.exports = ({ file }) => {
- let isVant = file && file.dirname && file.dirname.indexOf('vant') > -1
- let rootValue = 37.5// 判断条件 请自行调整
- return {
- plugins: {
- autoprefixer: {},
- 'postcss-pxtorem': {
- rootValue: rootValue,
- propList: ['*']
- }
- }
- }
- }
|