babel.config.js 211 B

123456789101112
  1. module.exports = {
  2. plugins: [
  3. [
  4. 'import',
  5. {
  6. libraryName: 'element-plus',
  7. customStyleName: (name) => `element-plus/lib/theme-chalk/${name}.css`
  8. ,
  9. },
  10. ],
  11. ],
  12. };