bookmark/bookmark_front/babel.config.js

7 lines
211 B
JavaScript
Raw Normal View History

2020-06-24 13:54:15 +08:00
module.exports = {
2020-07-05 09:40:54 +08:00
presets: ["@vue/cli-plugin-babel/preset"],
plugins: [
["import", { libraryName: "ant-design-vue", libraryDirectory: "es", style: "css" }] // `style: true` 会加载 less 文件
]
2020-06-24 13:54:15 +08:00
};