-
Notifications
You must be signed in to change notification settings - Fork 6
/
postcss.config.js
32 lines (29 loc) · 969 Bytes
/
postcss.config.js
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
const path = require("path");
const webpack = require('webpack');
const config = {
parser: require("postcss-comment"),
plugins: [
require("postcss-import")({
resolve(id, basedir, importOptions) {
if (id.startsWith("~@/")) {
return path.resolve(process.env.UNI_INPUT_DIR, id.substr(3));
} else if (id.startsWith("@/")) {
return path.resolve(process.env.UNI_INPUT_DIR, id.substr(2));
} else if (id.startsWith("/") && !id.startsWith("//")) {
return path.resolve(process.env.UNI_INPUT_DIR, id.substr(1));
}
return id;
},
}),
require("autoprefixer")({
remove: process.env.UNI_PLATFORM !== "h5",
}),
require("tailwindcss")({ config: "./tailwind.config.js" }),
require('weapp-tailwindcss/css-macro/postcss'),
require("@dcloudio/vue-cli-plugin-uni/packages/postcss"),
],
};
if (webpack.version[0] > 4) {
delete config.parser
}
module.exports = config