1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| module.exports = {
| plugins: {
| tailwindcss: {},
| autoprefixer: {
| overrideBrowserslist: ["Android 4.1", "iOS 7.1", "Chrome > 31", "ff > 31", "ie >= 8"]
| }
| // "postcss-pxtorem": {
| // // eslint-disable-next-line @typescript-eslint/explicit-function-return-type
| // rootValue: ({ file }) => {
| // return file.indexOf("vant") !== -1 ? 37.5 : 75;
| // },
| // propList: ["*"]
| // }
| }
| };
|
|