From 6bfeaa86e443359dfcd77fe7f26ea48a49a2388f Mon Sep 17 00:00:00 2001 From: plouc Date: Wed, 15 Dec 2021 23:30:13 +0900 Subject: [PATCH] feat(website): fix gatsby build due to dependencies updates --- babel.config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/babel.config.js b/babel.config.js index 0b3f1cb383..8e58e2cf9a 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,7 +1,7 @@ module.exports = { presets: [ - ["@babel/preset-env", { loose: true }], - "@babel/preset-react", - "@babel/preset-typescript", + ['@babel/preset-env', { loose: true }], + ['@babel/preset-react', { runtime: 'automatic' }], + '@babel/preset-typescript', ], }