1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| /*
| * @Author: 小明丶
| * @Date: 2019-08-30 09:19:08
| * @LastEditors: 小明丶
| * @LastEditTime: 2019-08-30 09:47:47
| * @Description:
| */
| module.exports = {
| configureWebpack: config => {
| require('vux-loader').merge(config, {
| options: {},
| plugins: ['vux-ui']
| })
| }
| }
|
|