您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

babel.config.js 207B

1234567891011121314
  1. module.exports = {
  2. plugins: [
  3. '@babel/plugin-syntax-dynamic-import',
  4. '@babel/plugin-proposal-class-properties',
  5. ],
  6. presets: [
  7. [
  8. '@babel/preset-env',
  9. {
  10. useBuiltIns: false,
  11. },
  12. ],
  13. ],
  14. }