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 }; }