From ed2b8c49f6d01fe147cdfef9dceca27d48d76558 Mon Sep 17 00:00:00 2001 From: Manuk Minasyan Date: Wed, 21 Aug 2019 17:08:12 +0400 Subject: [PATCH] Added @babel/preset-env --- babel.config.js | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/babel.config.js b/babel.config.js index cfa32e3..d3d6542 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,11 +1,12 @@ // babel.config.js module.exports = { - presets: [ - ['@vue/app', { - polyfills: [ - 'es6.promise', - 'es6.symbol' - ] - }] - ] -} \ No newline at end of file + presets: [ + "@babel/preset-env", + ['@vue/app', { + polyfills: [ + 'es6.promise', + 'es6.symbol' + ] + }] + ] +}