17 lines
300 B
JavaScript
17 lines
300 B
JavaScript
module.exports = {
|
|
presets: [
|
|
['@vue/app',{
|
|
useBuiltIns: 'entry'
|
|
}]
|
|
],
|
|
"plugins": [
|
|
[
|
|
"component",
|
|
{
|
|
"libraryName": "element-ui",
|
|
"styleLibraryName": "theme-chalk"
|
|
}
|
|
]
|
|
]
|
|
}
|