babel.config.js 192 B

123456789101112
  1. module.exports = {
  2. presets: [
  3. '@vue/app'
  4. ],
  5. // plugins: [
  6. // 'transform-remove-strict-mode' // 配置插件,这里很重要
  7. // ]
  8. ignore: [
  9. './public/Voice/*.js'
  10. ]
  11. }