1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| const plugins = ["@vue/babel-plugin-transform-vue-jsx"];
| // 生产环境移除console
| if(process.env.NODE_ENV === 'production') {
| plugins.push("transform-remove-console")
| }
|
| module.exports = {
| plugins: [
| ['import', {
| libraryName: 'vant',
| libraryDirectory: 'es',
| style: true
| }, 'vant']
| ]
| };
|
|