We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8030d1c commit 32dec72Copy full SHA for 32dec72
babel.config.js
@@ -1,5 +1,14 @@
1
module.exports = {
2
presets: [
3
- '@vue/app'
+ ['@vue/app', {
4
+ polyfills: [
5
+ 'es6.array.find',
6
+ 'es6.array.from',
7
+ 'es6.symbol'
8
+ ]
9
+ }],
10
+ ["@babel/preset-env", {
11
+ "useBuiltIns": "entry"
12
+ }]
13
]
-}
14
+}
package.json
@@ -18,6 +18,7 @@
18
"test:e2e": "vue-cli-service test:e2e"
19
},
20
"dependencies": {
21
+ "@babel/polyfill": "^7.4.4",
22
"@coreui/coreui": "^2.1.12",
23
"@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.3.1",
24
"@coreui/icons": "0.3.0",
0 commit comments