Rap 原分销系统代码Web
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

f0a2efc2e221029e8fb56f7e2f2b13f64c6e4206.svn-base 248B

5 달 전
1234567891011
  1. const plugins = ['@vue/babel-plugin-transform-vue-jsx']
  2. // 生产环境移除console
  3. if (process.env.NODE_ENV === 'production') {
  4. plugins.push('transform-remove-console')
  5. }
  6. module.exports = {
  7. plugins: plugins,
  8. presets: [
  9. '@vue/app'
  10. ]
  11. }