Files
admin_core/babel.config.js
张成 4823e1d152 1
2025-10-09 16:26:02 +08:00

22 lines
402 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
module.exports = {
presets: [
[
'@babel/preset-env',
{
modules: 'auto', // 修改为 auto让 webpack 自动处理模块格式
targets: {
browsers: ['>1%', 'last 2 versions', 'not ie <= 8']
}
}
],
[
'@vue/babel-preset-jsx',
{
// Vue 2 JSX 配置
injectH: true // 自动注入 h 函数
}
]
]
}