babel.config.js 199 B

123456789101112
  1. module.exports = {
  2. presets: [
  3. "@vue/cli-plugin-babel/preset"
  4. ],
  5. plugins: [
  6. ["import", {
  7. libraryName: "vant",
  8. libraryDirectory: "es",
  9. style: true
  10. }, "vant"]
  11. ]
  12. };