-
Notifications
You must be signed in to change notification settings - Fork 1
/
postcss.config.ts
51 lines (51 loc) · 1.79 KB
/
postcss.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { uniPostcssPlugin } from '@dcloudio/uni-cli-shared'
// @ts-ignore
import postcssImport from 'postcss-import'
import tailwindcss from 'tailwindcss'
// @ts-ignore
import postcssClassRename from 'postcss-class-rename'
// @ts-ignore
import cssByebye from 'css-byebye'
import autoprefixer from 'autoprefixer'
// import path from 'path'
import { resolve } from 'node:path'
const uniInputDir: string = process.env.UNI_INPUT_DIR as string
console.log(process.env.UNI_PLATFORM)
export default {
plugins: [
// postcssImport({
// resolve(id:string) {
// if (id.startsWith('~@/')) {
// return path.resolve(uniInputDir, id.substr(3))
// } else if (id.startsWith('@/')) {
// return path.resolve(uniInputDir, id.substr(2))
// } else if (id.startsWith('/') && !id.startsWith('//')) {
// return path.resolve(uniInputDir, id.substr(1))
// }
// return id
// }
// }),
tailwindcss(),
// 根据平台差异进行不同的样式处理
// ...(process.env.UNI_PLATFORM !== 'h5'
// ? [
// // 使用postcss-class-name 包将小程序不支持的类名转换为支持的类名
// postcssClassRename({
// '\\\\:': '--',
// '\\\\/': '--',
// '\\\\.': '--',
// // '.:': '--',
// '\\*': '--'
// }),
// cssByebye({
// rulesToRemove: [/\*/],
// map: false
// })
// ]
// : []),
uniPostcssPlugin(),
autoprefixer({
remove: true
})
]
}