| 1234567891011121314151617181920212223242526 |
- module.exports = {
- 'presets': [
- ['@vue/app', {
- useBuiltIns: 'entry'
- }]
- ],
- 'plugins': [
- // [
- // 'import',
- // {
- // 'libraryName': 'ant-design-vue',
- // 'libraryDirectory': 'es',
- // 'style': true
- // }
- // ],
- '@babel/plugin-proposal-optional-chaining', // 可选链式语法
- '@babel/plugin-proposal-nullish-coalescing-operator', // 双问号语法
- [
- 'component',
- {
- 'libraryName': 'element-ui',
- 'styleLibraryName': 'theme-chalk'
- }
- ]
- ]
- }
|