vant-weapp/postcss.config.js
Yao 451a3b19fc
[new feature] 增加 css 编译,方便组件书写 (#40)
* add src dir && add build

* add build watch && change dir name

* bower ignore package.json
2017-10-29 10:42:28 +08:00

14 lines
275 B
JavaScript

const postcssEasyImport = require('postcss-easy-import');
const precss = require('precss');
const postcssCalc = require('postcss-calc');
module.exports = {
plugins: [
postcssEasyImport({
extensions: ['wxss', 'css']
}),
precss(),
postcssCalc()
]
};