mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-23 07:33:53 +08:00
13 lines
271 B
JavaScript
13 lines
271 B
JavaScript
module.exports = {
|
|
presets: [
|
|
['@vue/cli-plugin-babel/preset', {
|
|
useBuiltIns: 'usage',
|
|
corejs: 3
|
|
}]
|
|
],
|
|
plugins: [
|
|
'@babel/plugin-syntax-dynamic-import', // 确保支持动态导入 (Lazy Loading)
|
|
'@babel/plugin-transform-runtime'
|
|
]
|
|
}
|