15 lines
267 B
JavaScript
15 lines
267 B
JavaScript
|
|
module.exports = {
|
||
|
|
presets: [
|
||
|
|
'@vue/app'
|
||
|
|
],
|
||
|
|
'env': {
|
||
|
|
'development': {
|
||
|
|
'plugins': [
|
||
|
|
'dynamic-import-node',
|
||
|
|
'@babel/plugin-proposal-optional-chaining',
|
||
|
|
'@babel/plugin-proposal-nullish-coalescing-operator'
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|