From 658846994ad4079269a8a68d7dfa1d6277867f35 Mon Sep 17 00:00:00 2001 From: Thomas Smith <49042513+tsmitty11@users.noreply.github.com> Date: Mon, 24 Apr 2023 19:42:54 +0200 Subject: [PATCH] Let's try this? --- babel.config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/babel.config.js b/babel.config.js index 02f7ccb..6d7cd30 100644 --- a/babel.config.js +++ b/babel.config.js @@ -4,8 +4,13 @@ module.exports = function (api) { ["@babel/preset-react"] ] const plugins = []; + const options = { + babelrc: false, + configFile: false + }; return { presets, - plugins + plugins, + options }; }