ly-front/babel.config.js

18 lines
288 B
JavaScript
Raw Permalink Normal View History

2025-03-31 15:26:29 +00:00
module.exports = {
presets: ["@vue/cli-plugin-babel/preset"],
plugins: [
[
"component",
{
libraryName: "element-ui",
styleLibraryName: "theme-chalk"
}
]
],
env: {
production: {
plugins: ["transform-remove-console"]
}
}
};