From ac37c395e46489538390c4d67f7c9a9b8d7c6df2 Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Thu, 12 Jul 2018 10:35:12 -0500 Subject: [PATCH] enable @babel/plugin-transform-runtime in webpack config --- webpack.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/webpack.config.js b/webpack.config.js index 81fe421..9c970f2 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -12,6 +12,9 @@ const standalone = { loader: 'babel-loader', options: { babelrc: false, + plugins: [ + "@babel/plugin-transform-runtime" + ], presets: [ ['@babel/env'] ]