mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-09-10 01:32:04 +08:00
1. update to @vue/cli-service@3.0.5, @babel/core@7.0.0 2. use vue-cli service replace config file in build/ and config/ 3. upgrade vue and babel configuration 4. solve the svg-sprite config problem #980 refs: #932 #1087 #980 #1056
15 lines
227 B
JavaScript
15 lines
227 B
JavaScript
module.exports = {
|
|
presets: [
|
|
['@vue/app', { modules: 'commonjs' }]
|
|
],
|
|
plugins: [],
|
|
env: {
|
|
test: {
|
|
presets: [
|
|
['@vue/app', { modules: 'commonjs' }]
|
|
],
|
|
plugins: ['istanbul']
|
|
}
|
|
}
|
|
}
|