mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
16 lines
352 B
JavaScript
16 lines
352 B
JavaScript
const postcssEasyImport = require('postcss-easy-import');
|
|
const precss = require('precss');
|
|
const autoprefixer = require('autoprefixer');
|
|
const postcssCalc = require('postcss-calc');
|
|
|
|
module.exports = {
|
|
plugins: [
|
|
postcssEasyImport({
|
|
extensions: ['.wxss', '.css', '.pcss']
|
|
}),
|
|
precss(),
|
|
postcssCalc(),
|
|
autoprefixer()
|
|
]
|
|
};
|