健康同学微信公众号h5项目
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 11 Monaten
vor 11 Monaten
vor 11 Monaten
vor 11 Monaten
vor 11 Monaten
vor 11 Monaten
vor 11 Monaten
1234567891011121314151617181920212223
  1. // 获取 VUE_APP_ENV 非 NODE_ENV,测试环境依然 console
  2. const IS_PROD = ['production', 'prod'].includes(process.env.VUE_APP_ENV);
  3. const plugins = [
  4. [
  5. 'import',
  6. {
  7. libraryName: 'vant',
  8. libraryDirectory: 'es',
  9. style: true
  10. },
  11. 'vant'
  12. ]
  13. ];
  14. // 去除 console.log
  15. if (IS_PROD) {
  16. plugins.push('transform-remove-console');
  17. }
  18. module.exports = {
  19. presets: [['@vue/cli-plugin-babel/preset', { useBuiltIns: 'usage', corejs: 3 }]],
  20. plugins
  21. };