mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-20 22:30:05 -06:00
11 lines
180 B
JavaScript
11 lines
180 B
JavaScript
module.exports = api => {
|
|
api.extendPackage({
|
|
devDependencies: {
|
|
'@vue/babel-preset-app': '^3.0.0-alpha.1'
|
|
},
|
|
babel: {
|
|
presets: ['@vue/app']
|
|
}
|
|
})
|
|
}
|